FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / SetUserData Method / SetUserData(Int32,Int32,Object) Method
Row index.
Column index.
User data to assign to the cell.

In This Topic
    SetUserData(Int32,Int32,Object) Method
    In This Topic
    Assigns user data to a cell.
    Syntax
    'Declaration
     
    
    Public Overloads Overridable Sub SetUserData( _
       ByVal row As Integer, _
       ByVal col As Integer, _
       ByVal data As Object _
    ) 
    public virtual void SetUserData( 
       int row,
       int col,
       object data
    )

    Parameters

    row
    Row index.
    col
    Column index.
    data
    User data to assign to the cell.
    Remarks
    The user data is not used internally by the grid. It is reserved for additional data that you may want to associate with a cell.
    See Also