PrintDocument for WinForms | ComponentOne
C1.PrintDocument.6 Assembly / C1.C1Preview Namespace / TableCellCollection Class / Item(Int32,Int32) Property
The 0-based row index.
The 0-based column index.

In This Topic
    Item(Int32,Int32) Property
    In This Topic
    Gets the TableCell at the intersection of the specified row and column. This property always returns a non-null TableCell object.
    Syntax
    'Declaration
     
    Public ReadOnly Property Item( _
       ByVal row As Integer, _
       ByVal col As Integer _
    ) As TableCell
    public TableCell Item( 
       int row,
       int col
    ) {get;}

    Parameters

    row
    The 0-based row index.
    col
    The 0-based column index.

    Property Value

    The cell at the intersection of the specified row and column.
    See Also