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

Show() 공개 메소드

Shows the autocomplete window.
public Show ( int lengthEntered, string list ) : void
lengthEntered int Number of characters of the current word already entered in the editor
list string Sets the property.
리턴 void
        public void Show(int lengthEntered, string list)
        {
            this._list = list == string.Empty ? new List<string>() :
                new List<string>(list.Split(this.ListSeparator));
            this.Show(lengthEntered, list, true);
        }

Same methods

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