LastParagraph
Shape.LastParagraph property
الحصول على الفقرة الأخيرة في الشكل.
public Paragraph LastParagraph { get; }
أمثلة
يوضح كيفية ضبط اتجاه النص داخل مربع النص.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape textBoxShape = builder.InsertShape(ShapeType.TextBox, 150, 100);
TextBox textBox = textBoxShape.TextBox;
// انقل أداة إنشاء المستندات إلى داخل TextBox وأضف نصًا.
builder.MoveTo(textBoxShape.LastParagraph);
builder.Writeln("Hello world!");
builder.Write("Hello again!");
// قم بتعيين خاصية "LayoutFlow" لتعيين اتجاه لمحتويات النص في مربع النص هذا.
textBox.LayoutFlow = layoutFlow;
doc.Save(ArtifactsDir + "Shape.TextBoxLayoutFlow.docx");
أنظر أيضا
- class Paragraph
- class Shape
- مساحة الاسم Aspose.Words.Drawing
- المجسم Aspose.Words