Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Returns or sets an NamedStyle object that represents the Style of this paragraph.

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public NamedStyle Style{ get; set; }
{signature}{signature:</pre></td></tr></tbody></table>
} Public
Signature
vb.net
vb.net

<p>Public Property Style() As NamedStyle
{signature}
{example}{code:csharp|title=C#}NamedStyle</p>

Example

Code Block
csharp
csharp
titleC#

          //--- Return NamedStyle
          NamedStyle oNamedStyle = oParagraph.Style;

          //--- Set NamedStyle
          oParagraph.Style = oDocument.Styles[NamedStyle.BuiltIn.Heading1];
        {code}
{code:
|title=}
Code Block
vb.net
vb.net
titlevb.net

          '--- Return NamedStyle
          Dim oNamedStyle As NamedStyle = oParagraph.Style

          '--- Set NamedStyle
          oParagraph.Style = oDocument.Styles(NamedStyle.BuilIn.Heading1)
        {code}

{example}
Example