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 boolean that represents whether or not Word will attempt to keep a table created with this formatting on one page.

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

          //--- Return CantSplit
          boolean cantSplit = oTableFormatting.CantSplit;

          //--- Set CantSplit
          oTableFormatting.CantSplit = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return CantSplit
          Dim cantSplit As Boolean = oTableFormatting.CantSplit

          '--- Set CantSplit
          oTableFormatting.CantSplit = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not Word will attempt to keep a table created with this formatting on one page.{excerpt}
{signature:C#}
 public boolean CantSplit{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property CantSplit() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle