LayoutFlow

LayoutFlow enumeration

Détermine le flux de la disposition du texte dans une zone de texte.

public enum LayoutFlow

Valeurs

NomÉvaluerLa description
Horizontal0Le texte est affiché horizontalement.
TopToBottomIdeographic1Le texte idéographique est affiché verticalement.
BottomToTop2Le texte est affiché verticalement.
TopToBottom3Le texte est affiché verticalement.
HorizontalIdeographic4Le texte idéographique est affiché horizontalement.
Vertical5Le texte est affiché verticalement.

Exemples

Montre comment ajouter du texte à une zone de texte et modifier son orientation

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

Voir également