[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IStyle.Name

Name Property

Name

Gets the name of the object.

Use this property to get the name of the named style stored in the workbook.

Declaration
string Name { get; }
ReadOnly Property Name As String
Examples
IStyle style = workbook.Styles.Add("HeaderStyle");
worksheet.Range["A1"].Style = style;
string styleName = style.Name;