Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / IsEmpty Method / IsEmpty(Int32,Int32,Int32,Int32) Method
The first row index of the cell.
The first column index of the cell.
The last row index of the cell.
The last column index of the cell.


In This Topic
    IsEmpty(Int32,Int32,Int32,Int32) Method
    In This Topic
    Gets a boolean value indicating whether the cell contains empty data.
    Syntax
    'Declaration
     
    
    Public Overloads Function IsEmpty( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
    Dim value As Boolean
     
    value = instance.IsEmpty(row, column, row2, column2)
    public bool IsEmpty( 
       int row,
       int column,
       int row2,
       int column2
    )

    Parameters

    row
    The first row index of the cell.
    column
    The first column index of the cell.
    row2
    The last row index of the cell.
    column2
    The last column index of the cell.

    Return Value

    true if the cell data is empty; otherwise, false.
    See Also