[]
Gets or sets the name of the object.
Use this property to get or change the current name assigned to the shape.
string Name { get; set; }
Property Name As String
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Name = "SalesBox";
string name = shape.Name;