BrightIdeasSoftware.ObjectListView.ConfigureAutoComplete C# (CSharp) Method

ConfigureAutoComplete() public method

Configure the given text box to autocomplete unique values from the given column. At most 1000 rows will be considered.
public ConfigureAutoComplete ( TextBox tb, OLVColumn column ) : void
tb System.Windows.Forms.TextBox The textbox to configure
column OLVColumn The column used to calculate values
return void
        public void ConfigureAutoComplete(TextBox tb, OLVColumn column)
        {
            this.ConfigureAutoComplete(tb, column, 1000);
        }

Same methods

ObjectListView::ConfigureAutoComplete ( TextBox tb, OLVColumn column, int maxRows ) : void
ObjectListView