NoTextRotation

TextBox.NoTextRotation property

获取或设置一个布尔值,指示旋转形状时 TextBox 的文本不应旋转。

public bool NoTextRotation { get; set; }

评论

默认值为错误的

例子

显示如何在形状旋转时禁用文本旋转。

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

也可以看看