ARCed.Scintilla.SnippetManager.ShowSnippetList C# (CSharp) Method

ShowSnippetList() public method

public ShowSnippetList ( ) : void
return void
        public void ShowSnippetList()
        {
            if (this._list.Count == 0)
                return;

            if (this._snipperChooser == null)
            {
                this._snipperChooser = new SnippetChooser
                {
                    Scintilla = Scintilla,
                    SnippetList = this._list.ToString()
                };
                this._snipperChooser.Scintilla.Controls.Add(this._snipperChooser);
            }
            this._snipperChooser.SnippetList = this._list.ToString();
            this._snipperChooser.Show();
        }