ARCed.Scintilla.AutoComplete.Show C# (CSharp) 메소드

Show() 공개 메소드

Shows the autocomplete window
This overload assumes that the List property has been set.
public Show ( int lengthEntered ) : void
lengthEntered int Number of characters of the current word already entered in the editor
리턴 void
        public void Show(int lengthEntered)
        {
            this.Show(lengthEntered, this.GetListString(this._list), false);
        }

Same methods

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