FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / DataMember Property

In This Topic
    DataMember Property (C1FlexGrid)
    In This Topic
    Gets or sets the specific list in a DataSource object that the grid should display.
    Syntax
    'Declaration
     
    
    Public Property DataMember As String
    public string DataMember {get; set;}
    Remarks

    If a DataSource contains multiple sources of data, you should set the DataMember property to one of the sources.

    For example, if the DataSource is a System.Data.DataSet contains three tables named Customers, Orders, and OrderDetails, you must specify one of the tables to bind to.

    If the System.Data.DataSet contains only one System.Data.DataTable, you may set the DataMember property to an empty string.

    You can use the C1FlexGridBase.SetDataBinding method to set the DataSource and DataMember properties at the same time.

    See Also