ComponentOne FlexPivot for WinForms
C1.Win.FlexPivot.4.5.2 Assembly / C1.Win.FlexPivot Namespace / C1FlexPivotGrid Class / GetData Method / GetData(Int32,Int32) Method
Row index.
Column index.

In This Topic
    GetData(Int32,Int32) Method
    In This Topic
    Gets the value of a grid cell.
    Syntax
    'Declaration
     
    Public Overloads Overridable Function GetData( _
       ByVal row As Integer, _
       ByVal col As Integer _
    ) As Object
    public virtual object GetData( 
       int row,
       int col
    )

    Parameters

    row
    Row index.
    col
    Column index.

    Return Value

    The value of the cell.
    Remarks

    The C1.Win.C1FlexGrid.C1FlexGridBase.GetData method returns the raw data stored in a specific grid cell. It is equivalent to using the grid's indexer. For example:

    object foo = flex.GetData(1, 1); object bar = flex[1, 1]; // same thing

    The data displayed on the grid might be different from the raw data, depending on the setting of the C1.Win.C1FlexGrid.RowCol.Format and C1.Win.C1FlexGrid.RowCol.DataMap properties. To obtain the display value (which is always a string), use the C1.Win.C1FlexGrid.C1FlexGridBase.GetDataDisplay method instead.

    See Also