[]
Gets or sets the value for horizontally scaling the text for the IFillFormat.
Use this property to retrieve the horizontal scale applied to the current texture fill.
double TextureHorizontalScale { get; set; }
Property TextureHorizontalScale As Double
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IFillFormat fillFormat = shape.Fill;
fillFormat.PresetTextured(PresetTexture.Canvas);
fillFormat.TextureHorizontalScale = 1.5;
double scale = fillFormat.TextureHorizontalScale;