{description}
{excerpt}Returns a [NamedStyle.Type|NamedStyle.Type] object that represents the type of this style. Word 2003 supports four style types: Character, Paragraph, Table, and List. Older versions support fewer than this.{excerpt}
{signature:C#}
 public Type StyleType{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property StyleType() As Type
{signature}
{example}{code:csharp|title=C#}

          NamedStyle.Type nsType = namedStyl.Type;
        {code}
{code:vb.net|title=vb.net}

          Dim nsType As NamedStyle.Type = namedStyl.Type
        {code}

{example}