HangingPunctuation

ParagraphFormat.HangingPunctuation property

الحصول على علامة تشير إلى ما إذا كانت علامات الترقيم المعلقة ممكّنة للفقرة الحالية أو تعيينها.

public bool HangingPunctuation { 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");

أنظر أيضا