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
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:vb.net}
Public Property Formatting() As TableFormatting
{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}