[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRectangularGradient.Left

Left Property

Left

Gets or sets the convergence position of the rectangular gradient fill at the left.

Use this property to read the left-side convergence setting of a rectangular gradient fill.

Declaration
double Left { get; set; }
Property Left As Double
Examples
IRange cell = worksheet.Range["A1"];
cell.Interior.Pattern = Pattern.RectangularGradient;
IRectangularGradient gradient = (IRectangularGradient) cell.Interior.Gradient;
gradient.Left = 0.2;
double left = gradient.Left;