Page tree

Versions Compared

Key

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

Excerpt

Sets or returns a TableFormatting object representing the formatting of this table (borders, padding, shading, etc).

{signature}
{example}{code:csharp|title=C#}

          //--- Get TableFormatting
          TableFormatting formatting = oTable.TableFormatting;

          //--- Set TableFormatting
          oTable.TableFormatting = oTableFormatting;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get TableFormatting
          Dim formatting As TableFormatting = oTable.TableFormatting

          '--- Set TableFormatting
          oTable.TableFormatting = oTableFormatting
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a [TableFormatting|TableFormatting] object representing the formatting of this table \(borders, padding, shading, etc\).{excerpt}
{signature:C#}
 public TableFormatting Formatting{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Formatting() As TableFormatting
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle