NoTextRotation

TextBox.NoTextRotation property

Hämtar eller ställer in ett booleskt värde som anger att någon av texterna i TextBox inte ska rotera när formen roteras.

public bool NoTextRotation { get; set; }

Anmärkningar

Standardvärdet ärfalsk

Exempel

Visar hur man inaktiverar textrotation när formen roteras.

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

Se även