ICSharpCode.TextEditor.Document.Bookmark.Click C# (CSharp) Method

Click() public method

public Click ( System.Windows.Forms parent, System.Windows.Forms e ) : bool
parent System.Windows.Forms
e System.Windows.Forms
return bool
        public virtual bool Click(SWF.Control parent, SWF.MouseEventArgs e)
        {
            if (e.Button == SWF.MouseButtons.Left && CanToggle) {
                document.BookmarkManager.RemoveMark(this);
                return true;
            }
            return false;
        }