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 whether the current cell is the first cell in a group of vertically merged cells. The first cell will contain all the content.

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

          //--- Return FirstVerticalMerged
          bool merged = cell.FirstVerticalMerged;

          //--- Set FirstVerticalMerged
          cell.FirstVerticalMerged = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return FirstVerticalMerged
          Dim merged As Boolean = cell.FirstVerticalMerged

          '--- Set FirstVerticalMerged
          cell.FirstVerticalMerged = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether the current cell is the first cell in a group of vertically merged cells. The first cell will contain all the content.{excerpt}
{signature:C#}
 public boolean FirstVerticalMerged{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property FirstVerticalMerged() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle