ARCed.Scintilla.AutoComplete.Show C# (CSharp) Method

Show() public method

Shows the autocomplete window
public Show ( int lengthEntered, IEnumerable list ) : void
lengthEntered int Number of characters of the current word already entered in the editor
list IEnumerable Sets the property.
return void
        public void Show(int lengthEntered, IEnumerable<string> list)
        {
            this._list = new List<string>(list);
            this.Show(-1);
        }

Same methods

AutoComplete::Show ( ) : void
AutoComplete::Show ( IEnumerable list ) : void
AutoComplete::Show ( int lengthEntered ) : void
AutoComplete::Show ( int lengthEntered, string list ) : void
AutoComplete::Show ( int lengthEntered, string list, bool dontSplit ) : void
AutoComplete::Show ( string list ) : void