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

Sets or returns a NamedStyle object that represents the Style of the current table.

Signature
C#
C#
 public NamedStyle Style{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Style() As NamedStyle
{signature}
{example}{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#


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

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


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

          '--- Set NamedStyle
          oTable.Style = oDocument.Styles(NamedStyle.BuiltIn.NormalTable)
        
{code} {example}