Page tree

Versions Compared

Key

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

Excerpt

Returns or sets a boolean that represents if this is the first cell in a group of horizontally merged cells. The first cell will contain all the content.

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

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

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

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

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

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns or sets a {{boolean}} that represents if this is the first cell in a group of horizontally merged cells. The first cell will contain all the content.{excerpt}
{signature:C#}
 public boolean FirstMerged{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property FirstMerged() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle