[]
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.
double Left { get; set; }
Property Left As Double
IRange cell = worksheet.Range["A1"];
cell.Interior.Pattern = Pattern.RectangularGradient;
IRectangularGradient gradient = (IRectangularGradient) cell.Interior.Gradient;
gradient.Left = 0.2;
double left = gradient.Left;