IsAvailable(Int32,Int32,Int32,Int32) Method
In This Topic
Gets a boolean value indicating whether the is an item in the specified range.
Syntax
'Declaration
Public Function IsAvailable( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal column2 As Integer _
) As Boolean
'Usage
Dim instance As ConditionalObjects(Of TItem,TObject,TExecutedResult)
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim value As Boolean
value = instance.IsAvailable(row, column, row2, column2)
public bool IsAvailable(
int ,
int column,
int ,
int column2
)
Parameters
- row
- An integer value indicates the top row index of the cell range.
- column
- An integer value indicates the left column index of the cell range.
- row2
- An integer value indicates the bottom row index of the cell range.
- column2
- An integer value indicates the right column index of the cell range.
Return Value
true
if there is an item in the specified range; otherwise, false
.
See Also