FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / MultiColumnDictionary Class / MultiColumnDictionary Constructor / MultiColumnDictionary Constructor(String,Int32,Boolean)
String that contains the items. Items are delimited by pipe characters ("|"). Each item may contain multiple columns, delimited by tabs (vbTab or '\t').
Index of the column that is displayed in the grid.
True if keys are to be automatically generated, false if the items themselves are to be used as keys. Note that in the latter case, duplicate items are not allowed.

In This Topic
    MultiColumnDictionary Constructor(String,Int32,Boolean)
    In This Topic
    Initializes a new instance of an unbound MultiColumnDictionary class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal items As String, _
       ByVal displayColumn As Integer, _
       ByVal autoKeys As Boolean _
    )
    public MultiColumnDictionary( 
       string items,
       int displayColumn,
       bool autoKeys
    )

    Parameters

    items
    String that contains the items. Items are delimited by pipe characters ("|"). Each item may contain multiple columns, delimited by tabs (vbTab or '\t').
    displayColumn
    Index of the column that is displayed in the grid.
    autoKeys
    True if keys are to be automatically generated, false if the items themselves are to be used as keys. Note that in the latter case, duplicate items are not allowed.
    See Also