FarEastLineBreakControl

ParagraphFormat.FarEastLineBreakControl property

الحصول على علامة تشير إلى ما إذا كانت قواعد فصل الأسطر في شرق آسيا مطبقة على الفقرة الحالية أو تعيينها.

public bool FarEastLineBreakControl { get; set; }

أمثلة

يوضح كيفية تعيين خصائص خاصة للطباعة الآسيوية.

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

أنظر أيضا