LastParagraph
Shape.LastParagraph property
Ottiene l’ultimo paragrafo nella forma.
public Paragraph LastParagraph { get; }
Esempi
Mostra come impostare l’orientamento del testo all’interno di una casella di testo.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape textBoxShape = builder.InsertShape(ShapeType.TextBox, 150, 100);
TextBox textBox = textBoxShape.TextBox;
// Sposta il generatore di documenti all'interno del TextBox e aggiungi testo.
builder.MoveTo(textBoxShape.LastParagraph);
builder.Writeln("Hello world!");
builder.Write("Hello again!");
// Imposta la proprietà "LayoutFlow" per impostare un orientamento per il contenuto di testo di questa casella di testo.
textBox.LayoutFlow = layoutFlow;
doc.Save(ArtifactsDir + "Shape.TextBoxLayoutFlow.docx");
Guarda anche
- class Paragraph
- class Shape
- spazio dei nomi Aspose.Words.Drawing
- assemblea Aspose.Words