[]
Gets the name of the object.
Use this property to get the name of the named style stored in the workbook.
string Name { get; }
ReadOnly Property Name As String
IStyle style = workbook.Styles.Add("HeaderStyle");
worksheet.Range["A1"].Style = style;
string styleName = style.Name;