[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.Name

Name Property

Name

Gets or sets the name of the object.

Use this property to get or change the current name assigned to the shape.

Declaration
string Name { get; set; }
Property Name As String
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Name = "SalesBox";
string name = shape.Name;