Пример #1
0
 /// <summary>
 /// Raises the <see cref="Removed"/> event.
 /// </summary>
 /// <param name="e">The <see cref="DigitalRune.Windows.TextEditor.Bookmarks.BookmarkEventArgs"/> instance containing the event data.</param>
 protected virtual void OnRemoved(BookmarkEventArgs e)
 {
     if (Removed != null)
     {
         Removed(this, e);
     }
 }
Пример #2
0
 /// <summary>
 /// Raises the <see cref="Added"/> event.
 /// </summary>
 /// <param name="e">The <see cref="DigitalRune.Windows.TextEditor.Bookmarks.BookmarkEventArgs"/> instance containing the event data.</param>
 protected virtual void OnAdded(BookmarkEventArgs e)
 {
     if (Added != null)
     {
         Added(this, e);
     }
 }
 /// <summary>
 /// Raises the <see cref="Added"/> event.
 /// </summary>
 /// <param name="e">The <see cref="DigitalRune.Windows.TextEditor.Bookmarks.BookmarkEventArgs"/> instance containing the event data.</param>
 protected virtual void OnAdded(BookmarkEventArgs e)
 {
   if (Added != null)
     Added(this, e);
 }
 /// <summary>
 /// Raises the <see cref="Removed"/> event.
 /// </summary>
 /// <param name="e">The <see cref="DigitalRune.Windows.TextEditor.Bookmarks.BookmarkEventArgs"/> instance containing the event data.</param>
 protected virtual void OnRemoved(BookmarkEventArgs e)
 {
   if (Removed != null)
     Removed(this, e);
 }