[]
Gets or sets the convergence position of the rectangular gradient fill at the right.
This value controls the right-side convergence position of a rectangular gradient fill.
double Right { get; set; }
Property Right As Double
IRange cell = worksheet.Range["A1"];
cell.Interior.Pattern = Pattern.RectangularGradient;
IRectangularGradient gradient = (IRectangularGradient) cell.Interior.Gradient;
gradient.Right = 0.3;
double right = gradient.Right;