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

Show() public method

Shows the autocomplete window
public Show ( IEnumerable list ) : void
list IEnumerable /// Sets the property. /// In this overload the lengthEntered is automatically detected by the editor. ///
return void
        public void Show(IEnumerable<string> list)
        {
            this._list = new List<string>(list);
            this.Show(-1);
        }

Same methods

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