[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IFillFormat.TextureOffsetY

TextureOffsetY Property

TextureOffsetY

Gets or sets the offset Y value for the specified fill.

Use this property to read the vertical offset applied to a texture fill layout.

Declaration
double TextureOffsetY { get; set; }
Property TextureOffsetY As Double
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IFillFormat fillFormat = shape.Fill;
fillFormat.PresetTextured(PresetTexture.Canvas);
fillFormat.TextureOffsetY = 3.2;
double offsetY = fillFormat.TextureOffsetY;