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

...

Description

Excerpt

Returns whether or not the Cell is a merged cell.

Signature
C#
C#
 public boolean IsMerged{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property IsMerged() As Boolean
{signature}
{example}{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#


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


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