BaselineAlignment

ParagraphFormat.BaselineAlignment property

Ruft die vertikale Position von Schriftarten in einer Zeile ab oder legt diese fest.

public BaselineAlignment BaselineAlignment { get; set; }

Beispiele

Zeigt, wie die vertikale Position von Schriftarten in einer Zeile festgelegt wird.

Document doc = new Document(MyDir + "Office math.docx");

ParagraphFormat format = doc.FirstSection.Body.Paragraphs[0].ParagraphFormat;
if (format.BaselineAlignment == BaselineAlignment.Auto)
{                
    format.BaselineAlignment = BaselineAlignment.Top;
}

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

Siehe auch