JustificationMode

Document.JustificationMode property

Bir belgenin karakter aralığı ayarını alır veya ayarlar.

public JustificationMode JustificationMode { get; set; }

Örnekler

Karakter aralığı kontrolünün nasıl yönetileceğini gösterir.

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

Ayrıca bakınız