Articles in this section
Category / Section

How do I add multiple columns for an AutoComplete DropDown?

1 min read

 

Columns in the AutoComplete control are specified through the Columns property of the AutoComplete control.

The Columns property of the AutoComplete control is a collection of AutoCompleteDataColumnInfo objects and once the Columns property has been initialized, the individual columns can be changed by modifying the attributes of the corresponding AutoCompleteDataColumnInfo object.

C#

this.autoComplete1.DataSource =this.dataView1 ;

this.autoCompleteDataColumnInfo1 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("EmployeeID", 100, true);

this.autoCompleteDataColumnInfo2 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("LastName", 100, true);

this.autoCompleteDataColumnInfo3 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("BirthDate", 100, true);

this.autoCompleteDataColumnInfo4 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("City", 100, true);

VB

Me.autoComplete1.DataSource =Me.dataView1

Me.autoCompleteDataColumnInfo1 = New Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("EmployeeID", 100, True)

Me.autoCompleteDataColumnInfo2 = New Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("LastName", 100, True)

Me.autoCompleteDataColumnInfo3 = New Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("BirthDate", 100, True)

Me.autoCompleteDataColumnInfo4 = New Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("City", 100, True)

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied