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

OnDocumentChanged() protected method

protected OnDocumentChanged ( EventArgs e ) : void
e System.EventArgs
return void
        protected virtual void OnDocumentChanged(EventArgs e)
        {
            if (DocumentChanged != null) {
                DocumentChanged(this, e);
            }
        }