TextureAlignment
Fill.TextureAlignment property
获取或设置图块纹理填充的对齐方式。
public TextureAlignment TextureAlignment { get; set; }
例子
展示如何填充和平铺形状内的纹理。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertShape(ShapeType.Rectangle, 80, 80);
// 将纹理对齐应用于形状填充。
shape.Fill.PresetTextured(PresetTexture.Canvas);
shape.Fill.TextureAlignment = TextureAlignment.TopRight;
// 如果您想获得“TextureAlignment”,请使用compliance 选项通过DML 定义形状
// 文档保存后的属性。
OoxmlSaveOptions saveOptions = new OoxmlSaveOptions { Compliance = OoxmlCompliance.Iso29500_2008_Strict };
doc.Save(ArtifactsDir + "Shape.TextureFill.docx", saveOptions);
也可以看看
- enum TextureAlignment
- class Fill
- 命名空间 Aspose.Words.Drawing
- 部件 Aspose.Words