NoTextRotation

TextBox.NoTextRotation property

Ottiene o imposta un valore booleano che indica che il testo del TextBox non deve ruotare quando viene ruotata la forma.

public bool NoTextRotation { get; set; }

Osservazioni

Il valore predefinito èfalso

Esempi

Mostra come disabilitare la rotazione del testo quando la forma viene ruotata.

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

Guarda anche