{description}
{excerpt}Returns the style's name. This can be used to access the style later, and will appear in the Styles dialog in Excel.{excerpt}
{signature:C#}
 public System.String Name{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Name() As String
{signature}
{example}{code:csharp|title=C#}
String styleName = namedStyl.Name;{code}
{code:vb.net|title=vb.net}
Dim styleName As String = namedStyl.Name{code}

{example}