Returns a NamedStyle object that represents the named style that has the specified built in name.

 public NamedStyle this[BuiltIn name] { get; }
Public Default ReadOnly Property Item(ByVal name As BuiltIn) As NamedStyle

A NamedStyle.BuiltIn enumeration that represents the name of the style to retrieve.

A NamedStyle object that represents the named style that has the specified built in name.


          //--- Get Style by name
          NamedStyle myStyle = styls[NamedStyle.BuiltIn.Normal];
        

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