[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IFillFormat.TextureVerticalScale

TextureVerticalScale Property

TextureVerticalScale

Gets or sets the texture vertical scale for the specified fill.

Use this property to retrieve the vertical scale applied to the current texture fill.

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