FirstParagraph
Contenido
[
Ocultar
]Shape.FirstParagraph property
Obtiene el primer párrafo de la forma.
public Paragraph FirstParagraph { get; }
Ejemplos
Muestra cómo crear y dar formato a un cuadro de texto.
Document doc = new Document();
// Crea un cuadro de texto flotante.
Shape textBox = new Shape(doc, ShapeType.TextBox);
textBox.WrapType = WrapType.None;
textBox.Height = 50;
textBox.Width = 200;
// Establece la alineación horizontal y vertical del texto dentro de la forma.
textBox.HorizontalAlignment = HorizontalAlignment.Center;
textBox.VerticalAlignment = VerticalAlignment.Top;
// Agregue un párrafo al cuadro de texto y agregue una serie de texto que mostrará el cuadro de texto.
textBox.AppendChild(new Paragraph(doc));
Paragraph para = textBox.FirstParagraph;
para.ParagraphFormat.Alignment = ParagraphAlignment.Center;
Run run = new Run(doc);
run.Text = "Hello world!";
para.AppendChild(run);
doc.FirstSection.Body.FirstParagraph.AppendChild(textBox);
doc.Save(ArtifactsDir + "Shape.CreateTextBox.docx");
Ver también
- class Paragraph
- class Shape
- espacio de nombres Aspose.Words.Drawing
- asamblea Aspose.Words