Font
محتويات
[
يخفي
]ShapeBase.Font property
يوفر الوصول إلى تنسيق الخط لهذا الكائن.
public Font Font { get; }
أمثلة
يوضح كيفية إدراج مربع نص وتعيين خط محتوياته.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Hello world!");
Shape shape = builder.InsertShape(ShapeType.TextBox, 300, 50);
builder.MoveTo(shape.LastParagraph);
builder.Write("This text is inside the text box.");
// قم بتعيين الخاصية "مخفي" لكائن "الخط" الخاص بالشكل على "صحيح" لإخفاء مربع النص عن الأنظار
// وقم بطي المساحة التي كانت تشغلها عادةً.
// قم بتعيين الخاصية "مخفي" لكائن "الخط" الخاص بالشكل على "خطأ" لترك مربع النص مرئيًا.
shape.Font.Hidden = hideShape;
// إذا كان الشكل مرئيًا، فسنقوم بتعديل مظهره عبر كائن الخط.
if (!hideShape)
{
shape.Font.HighlightColor = Color.LightGray;
shape.Font.Color = Color.Red;
shape.Font.Underline = Underline.Dash;
}
// انقل المنشئ خارج مربع النص مرة أخرى إلى المستند الرئيسي.
builder.MoveTo(shape.ParentParagraph);
builder.Writeln("\nThis text is outside the text box.");
doc.Save(ArtifactsDir + "Shape.Font.docx");
أنظر أيضا
- class Font
- class ShapeBase
- مساحة الاسم Aspose.Words.Drawing
- المجسم Aspose.Words