LayoutFlow

LayoutFlow enumeration

Bestimmt den Fluss des Textlayouts in einem Textfeld.

public enum LayoutFlow

Werte

NameWertBeschreibung
Horizontal0Text wird horizontal angezeigt.
TopToBottomIdeographic1Ideografischer Text wird vertikal angezeigt.
BottomToTop2Text wird vertikal angezeigt.
TopToBottom3Text wird vertikal angezeigt.
HorizontalIdeographic4Ideografischer Text wird horizontal angezeigt.
Vertical5Text wird vertikal angezeigt.

Beispiele

Zeigt, wie man einem Textfeld Text hinzufügt und seine Ausrichtung ändert

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape textbox = new Shape(doc, ShapeType.TextBox)
{
    Width = 100, 
    Height = 100,
    TextBox = { LayoutFlow = LayoutFlow.BottomToTop }
};

textbox.AppendChild(new Paragraph(doc));
builder.InsertNode(textbox);

builder.MoveTo(textbox.FirstParagraph);
builder.Write("This text is flipped 90 degrees to the left.");

doc.Save(ArtifactsDir + "Drawing.TextBox.docx");

Siehe auch