[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.Title

Title Property

Title

Gets or sets the title of the alternative text associated with the specified shape.

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