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

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

    Parameters

    row
    column

    Property Value

    The cell in the specified row and column
    See Also