NoTextRotation

TextBox.NoTextRotation property

Şekil döndürüldüğünde TextBox metninin de dönmemesi gerektiğini belirten bir boole değeri alır veya ayarlar.

public bool NoTextRotation { get; set; }

Notlar

Varsayılan değer:YANLIŞ

Örnekler

Şekil döndürüldüğünde metin döndürmenin nasıl devre dışı bırakılacağını gösterir.

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");

Ayrıca bakınız