[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.Adjustments

Adjustments Property

Adjustments

Returns a collection of adjustment values for the specified AutoShape or connector.

Adjustment values control editable geometry points for shapes that support adjustments. The available adjustment points depend on the current shape type.

Declaration
IAdjustments Adjustments { get; }
ReadOnly Property Adjustments As IAdjustments
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Chevron, 10, 10, 120, 80);
IAdjustments adjustments = shape.Adjustments;
double value = adjustments[0];
adjustments[0] = value * 0.8;