JustificationMode

Document.JustificationMode property

الحصول على أو تعيين ضبط تباعد الأحرف في المستند.

public JustificationMode JustificationMode { get; set; }

أمثلة

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

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");

أنظر أيضا