MirrorIndents

ParagraphFormat.MirrorIndents property

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

public bool MirrorIndents { get; set; }

أمثلة

إظهار كيفية جعل المسافات البادئة اليمنى واليسرى متماثلة.

Document doc = new Document(MyDir + "Document.docx");
ParagraphFormat format = doc.FirstSection.Body.Paragraphs[0].ParagraphFormat;

format.MirrorIndents = true;

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

أنظر أيضا