[]
Returns the end point for the gradient line. This property is read-only.
IGradientStops GradientStops { get; }
ReadOnly Property GradientStops As IGradientStops
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];