Spread WinForms 15
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Tables Class / IsAvailable Method
An integer value indicates the start row index.
An integer value indicates the start column index.
An integer value indicates the end row index.
An integer value indicates the end column index.


In This Topic
IsAvailable Method (Tables)
In This Topic
Determines whether there is any table that intersects with the specified range.
Syntax
'Declaration
 
Public Function IsAvailable( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal row2 As Integer, _
   ByVal column2 As Integer _
) As Boolean
 
'Usage
 
Dim instance As Tables
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)

Parameters

row
An integer value indicates the start row index.
column
An integer value indicates the start column index.
row2
An integer value indicates the end row index.
column2
An integer value indicates the end column index.

Return Value

true if there is any table that intersects with the specified range; otherwise, false.
See Also