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

أنظر أيضا