JustificationMode

JustificationMode enumeration

يحدد تعديل تباعد الأحرف للمستند. القيمة الافتراضية هييوسع .

public enum JustificationMode

قيم

اسمقيمةوصف
Expand0
Compress1
CompressKana2

أمثلة

يوضح كيفية إدارة التحكم في تباعد الأحرف.

Document doc = new Document(MyDir + "Document.docx");

JustificationMode justificationMode = doc.JustificationMode;
if (justificationMode == JustificationMode.Expand)                
    doc.JustificationMode = JustificationMode.Compress;

doc.Save(ArtifactsDir + "Document.SetJustificationMode.docx");

أنظر أيضا