Rotation

ShapeBase.Rotation property

定义形状旋转的角度(以度为单位)。 正值对应于顺时针旋转角度。

public double Rotation { get; set; }

评论

默认值为 0。

例子

演示如何插入和旋转图像。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// 插入带有图像的形状。
Shape shape = builder.InsertImage(Image.FromFile(ImageDir + "Logo.jpg"));
Assert.True(shape.CanHaveImage);
Assert.True(shape.HasImage);

// 将图像顺时针旋转 45 度。
shape.Rotation = 45;

doc.Save(ArtifactsDir + "Shape.Rotate.docx");

也可以看看