Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

...

Wiki Markup
{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.

...

{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}
Signature
C#C#
{excerpt}
{signature:C#}
 public Type StyleType{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property StyleType() As Type
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle