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}Returns whether or not the [Cell|Cell] is a merged cell.{excerpt}
{signature:C#}
 public boolean IsMerged{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property IsMerged() As Boolean
{signature}
{example}{code:csharp|title=C#}

          ExcelApplication xla = new ExcelApplication();
          bool isMerged = wb.Worksheets[0].Cells[0, 0].IsMerged;
        {code}
{code:vb.net|title=vb.net}

          Dim xla As New ExcelApplication()
          bool isMerged = wb.Worksheets(0).Cells(0, 0).IsMerged
        {code}

{example}
{scrollbar}