Shape
محتويات
[
يخفي
]Shape constructor
إنشاء كائن شكل جديد.
public Shape(DocumentBase doc, ShapeType shapeType)
معامل | يكتب | وصف |
---|---|---|
doc | DocumentBase | وثيقة المالك. |
shapeType | ShapeType | نوع الشكل المراد إنشاؤه. |
ملاحظات
يجب عليك تحديد خصائص الشكل المطلوب بعد إنشاء الشكل.
أمثلة
يوضح كيفية إدراج شكل به صورة من نظام الملفات المحلي في مستند.
Document doc = new Document();
// سيقوم المنشئ العام لفئة "الشكل" بإنشاء شكل بنوع الترميز "ShapeMarkupLanguage.Vml".
// إذا كنت بحاجة إلى إنشاء شكل من النوع غير البدائي، مثل SingleCornerSnipped، وTopCornersSnipped، وDiagonalCornerSnipped،
// TopCornersOneRoundedOneSnipped، أو SingleCornerRounded، أو TopCornersRounded، أو DiagonalCornersRounded،
// يرجى استخدام DocumentBuilder.InsertShape.
Shape shape = new Shape(doc, ShapeType.Image);
shape.ImageData.SetImage(ImageDir + "Windows MetaFile.wmf");
shape.Width = 100;
shape.Height = 100;
doc.FirstSection.Body.FirstParagraph.AppendChild(shape);
doc.Save(ArtifactsDir + "Image.FromFile.docx");
يوضح كيفية إنشاء مربع نص وتنسيقه.
Document doc = new Document();
// إنشاء مربع نص عائم.
Shape textBox = new Shape(doc, ShapeType.TextBox);
textBox.WrapType = WrapType.None;
textBox.Height = 50;
textBox.Width = 200;
// قم بتعيين المحاذاة الأفقية والرأسية للنص داخل الشكل.
textBox.HorizontalAlignment = HorizontalAlignment.Center;
textBox.VerticalAlignment = VerticalAlignment.Top;
// أضف فقرة إلى مربع النص وأضف سلسلة من النص سيعرضها مربع النص.
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");
أنظر أيضا
- class DocumentBase
- enum ShapeType
- class Shape
- مساحة الاسم Aspose.Words.Drawing
- المجسم Aspose.Words