[]
Gets or sets the title of the alternative text associated with the specified shape.
string Title { get; set; }
Property Title As String
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Title = "SalesBox";
string title = shape.Title;