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

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

    Parameters

    row
    Row index.
    colName
    Column name.
    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