Returns a Boolean value indicating whether the specified cell is contained within the MergeArea.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Function ContainsCell( _
ByVal row As Integer, _
ByVal column As Integer _
) As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As MergeArea
Dim row As Integer
Dim column As Integer
Dim value As Boolean
value = instance.ContainsCell(row, column)
|
| C# | |
|---|
public bool ContainsCell(
int row,
int column
) |
Parameters
- row
- The row of the cell.
- column
- The column of the cell.
See Also