NoTextRotation

TextBox.NoTextRotation property

Ruft einen booleschen Wert ab oder legt diesen fest, der angibt, dass sich der Text der TextBox nicht drehen soll, wenn die Form gedreht wird.

public bool NoTextRotation { get; set; }

Bemerkungen

Der Standardwert istFALSCH

Beispiele

Zeigt, wie die Textdrehung deaktiviert wird, wenn die Form gedreht wird.

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

Siehe auch