ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.SpreadBuilder Assembly / GrapeCity.SpreadBuilder Namespace / DDSheet Class / Cell Method
The zero-based row number of the cell.
The zero-based column number of the cell.

In This Topic
    Cell Method
    In This Topic
    Returns the DDCell object located in the specified row and column.
    Syntax
    'Declaration
     
    Public Function Cell( _
       ByVal iRow As Integer, _
       ByVal iColumn As Integer _
    ) As DDCell
    public DDCell Cell( 
       int iRow,
       int iColumn
    )

    Parameters

    iRow
    The zero-based row number of the cell.
    iColumn
    The zero-based column number of the cell.

    Return Value

    The DDCell object for the specified row and column.
    Remarks
    This function may throw an ArgumentOutOfRangeException if the specified iRow or iColumn is out of range. The minimum value for both the iRow and iColumn arguments is 0.
    See Also