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


In This Topic
    IsEmpty(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 _
    ) As Boolean
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.IsEmpty(row, column)
    public bool IsEmpty( 
       int row,
       int column
    )

    Parameters

    row
    The row index of the cell.
    column
    The column index of the cell.

    Return Value

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