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
vb.net
vb.net
Public ReadOnly Property IsMerged() As Boolean
Example
Code Block
csharp
csharp
titleC#

          ExcelApplication xla = new ExcelApplication();
          bool isMerged = wb.Worksheets[0].Cells[0, 0].IsMerged;
        
Code Block
vb.net
vb.net
titlevb.net

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