NoTextRotation
TextBox.NoTextRotation property
الحصول على قيمة منطقية أو تعيينها تشير إلى عدم تدوير نص مربع النص عند تدوير الشكل.
public bool NoTextRotation { get; set; }
ملاحظات
القيمة الافتراضية هيخطأ شنيع
أمثلة
يوضح كيفية تعطيل تدوير النص عند تدوير الشكل.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertShape(ShapeType.Ellipse, 20, 20);
shape.TextBox.NoTextRotation = true;
doc.Save(ArtifactsDir + "Shape.NoTextRotation.docx");
أنظر أيضا
- class TextBox
- مساحة الاسم Aspose.Words.Drawing
- المجسم Aspose.Words