MirrorIndents

ParagraphFormat.MirrorIndents property

Sol ve sağ girintilerin aynı genişlikte olup olmadığını belirten bir bayrak alır veya ayarlar.

public bool MirrorIndents { get; set; }

Örnekler

Sol ve sağ girintilerin nasıl aynı yapılacağını göster.

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

format.MirrorIndents = true;

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

Ayrıca bakınız