[]
Returns the number of adjustment points in this collection.
Adjustment points define the editable geometry values for the associated AutoShape or connector obtained from Adjustments.
int Count { get; }
ReadOnly Property Count As Integer
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Chevron, 10, 10, 120, 80);
IAdjustments adjustments = shape.Adjustments;
int count = adjustments.Count;