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 whether or not the Cell is a merged cell.

{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
        
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns whether or not the [Cell|Cell] is a merged cell.{excerpt}
{signature:C#}
 public boolean IsMerged{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property IsMerged() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle

...

{code}

{example}
{scrollbar}