NoTextRotation
TextBox.NoTextRotation property
Ottiene o imposta un valore booleano che indica che il testo della TextBox non deve ruotare quando la forma viene ruotata.
public bool NoTextRotation { get; set; }
Osservazioni
Il valore predefinito èfalso
Esempi
Mostra come disattivare 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
- class TextBox
- spazio dei nomi Aspose.Words.Drawing
- assemblea Aspose.Words