[]
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.
double TextureVerticalScale { get; set; }
Property TextureVerticalScale As Double
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;