JustificationMode

JustificationMode enumeration

Anger teckenavståndsjusteringen för ett dokument. Standardvärdet ärBygga ut .

public enum JustificationMode

Värderingar

namnVärdeBeskrivning
Expand0
Compress1
CompressKana2

Exempel

Visar hur man hanterar teckenavståndskontroll.

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

Se även