Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / IsSpilledCell Method
The row index of the cell.
The column index of the cell


In This Topic
    IsSpilledCell Method (Worksheet)
    In This Topic
    Gets a value indicating whether the cell is spilled.
    Syntax
    'Declaration
     
    
    Public Function IsSpilledCell( _
       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.IsSpilledCell(row, column)
    public bool IsSpilledCell( 
       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 contains spilled value; otherwise, false.
    See Also