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