[]
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.
IAdjustments Adjustments { get; }
ReadOnly Property Adjustments As IAdjustments
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Chevron, 10, 10, 120, 80);
IAdjustments adjustments = shape.Adjustments;
double value = adjustments[0];
adjustments[0] = value * 0.8;