[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.GradientStops

GradientStops Property

GradientStops

Returns the end point for the gradient line. This property is read-only.

Declaration
IGradientStops GradientStops { get; }
ReadOnly Property GradientStops As IGradientStops
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.TwoColorGradient(GradientStyle.Horizontal, 1);
IGradientStops gradientStops = line.GradientStops;
IGradientStop firstStop = gradientStops[0];