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

InsertSnippet() public method

public InsertSnippet ( string shortcut ) : void
shortcut string
return void
        public void InsertSnippet(string shortcut)
        {
            Snippet snip;
            if (!this._list.TryGetValue(shortcut, out snip))
            {
                //	Not a match. Buh-bye
                return;
            }

            this.InsertSnippet(snip, Math.Min(NativeScintilla.GetCurrentPos(), NativeScintilla.GetAnchor()));
        }

Same methods

SnippetManager::InsertSnippet ( System.Snippet snip ) : void
SnippetManager::InsertSnippet ( System.Snippet snip, int startPos ) : void