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

Show() public method

Shows the autocomplete window.
This overload assumes that the List property has been set. The lengthEntered is automatically detected by the editor.
public Show ( ) : void
return void
        public void Show()
        {
            this.Show(-1, this.GetListString(this._list), false);
        }

Same methods

AutoComplete::Show ( IEnumerable list ) : 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