FarEastLineBreakControl

ParagraphFormat.FarEastLineBreakControl property

Ottiene o imposta un flag che indica se le regole di interruzione riga dell’Asia orientale vengono applicate al paragrafo corrente.

public bool FarEastLineBreakControl { get; set; }

Esempi

Mostra come impostare proprietà speciali per la tipografia asiatica.

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

ParagraphFormat format = doc.FirstSection.Body.FirstParagraph.ParagraphFormat;
format.FarEastLineBreakControl = true;
format.WordWrap = false;
format.HangingPunctuation = true;

doc.Save(ArtifactsDir + "ParagraphFormat.AsianTypographyProperties.docx");

Guarda anche