ActiveReports 18 .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 for 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 could throw an ArgumentOutOfRangeException if the specified iRow or iColumn is not in the valid range. The minimum value for both the iRow and iColumn argument is 0.
    See Also