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