PrintDocument for WPF | ComponentOne
C1.WPF.PrintDocument.4.6.2 Assembly / C1.C1Preview Namespace / TableCellCollection Class / Item Property
The 0-based row index.
The 0-based column index.

In This Topic
    Item Property (TableCellCollection)
    In This Topic
    Gets the TableCell at the intersection of the specified row and column. This property always returns a non-nullTableCell object.
    Syntax
    'Declaration
     
    Public ReadOnly Default Property Item( _
       ByVal row As Integer, _
       ByVal col As Integer _
    ) As TableCell
    public TableCell this[ 
       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