[]
Gets or sets the offset X value for the specified fill.
Use this property to retrieve the horizontal tile offset applied to the current texture fill. If this value is not set on the current fill and a parent fill exists, the inherited value is returned.
double TextureOffsetX { get; set; }
Property TextureOffsetX As Double
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IFillFormat fillFormat = shape.Fill;
fillFormat.PresetTextured(PresetTexture.Canvas);
fillFormat.TextureOffsetX = 12.0;
double offsetX = fillFormat.TextureOffsetX;