[]
Gets or sets the alignment of the texture fill for the specified IFillFormat.
This property specifies the origin of the coordinate grid used to tile the texture fill.
TextureAlignment TextureAlignment { get; set; }
Property TextureAlignment As TextureAlignment
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IFillFormat fillFormat = shape.Fill;
fillFormat.PresetTextured(PresetTexture.Canvas);
fillFormat.TextureAlignment = TextureAlignment.Center;
TextureAlignment alignment = fillFormat.TextureAlignment;