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

أنظر أيضا