ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / C1DataGrid Class / Item Property / Item(Int32,Int32) Property

In This Topic
    Item(Int32,Int32) Property
    In This Topic
    Gets the DataGridCell with the specified row and column index.
    Syntax
    'Declaration
     
    
    <SuppressMessageAttribute("Microsoft.Design", "CA1023:IndexersShouldNotBeMultidimensional")>
    Public Overloads ReadOnly Property Item( _
       ByVal rowIndex As Integer, _
       ByVal columnIndex As Integer _
    ) As DataGridCell
    [SuppressMessage("Microsoft.Design", "CA1023:IndexersShouldNotBeMultidimensional")]
    public DataGridCell Item( 
       int rowIndex,
       int columnIndex
    ) {get;}

    Parameters

    rowIndex
    columnIndex

    Property Value

    The cell in the specified row and column
    See Also