{description}
{excerpt}Returns a [NamedStyle|NamedStyle] object that represents the named style that has the specified string version of its name.{excerpt}
{signature:C#}
 public NamedStyle this[System.String name] { get; }
{signature}{signature:vb.net}
Public Default ReadOnly Property Item(ByVal name As String) As NamedStyle
{signature}
{parameters}
{param:name}An {{String}} that represents the name of the style's name to retrieve.{param}
{returns}A {{NamedStyle}} object that represents the named style that has the specified string version of its name or the specified index.{returns}
{example}{code:csharp|title=C#}

          //--- Get Style by name
          NamedStyle myStyle = styls["MyStyle"];

          //--- Get Style by ID
          NamedStyle styleZero = styls[0];
        {code}
{code:vb.net|title=vb.net}

          '--- Get Style by name
          Dim myStyle As NamedStyle = styls.Item("MyStyle")

          '--- Get Style by ID
          Dim styleZero As NamedStyle = styls.Item(0)
        {code}

{example}