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
vb.net
vb.net
Public Property Style() As NamedStyle
Example
Code Block
csharp
csharp
titleC#

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

          //--- Set NamedStyle
          oTable.Style = oDocument.Styles[NamedStyle.BuiltIn.NormalTable];
        
Code Block
vb.net
vb.net
titlevb.net

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

          '--- Set NamedStyle
          oTable.Style = oDocument.Styles(NamedStyle.BuiltIn.NormalTable)