IsAnyCellInRowSelected Method
In This Topic
Determines whether any cell in the specified row is in the selection.
Syntax
'Declaration
Public Function IsAnyCellInRowSelected( _
ByVal As Integer _
) As Boolean
'Usage
Dim instance As Worksheet
Dim row As Integer
Dim value As Boolean
value = instance.IsAnyCellInRowSelected(row)
public bool IsAnyCellInRowSelected(
int
)
Parameters
- row
- The row index of the row to check.
Return Value
true
if any cell in the specified row is in the selection; otherwise, false
.
See Also