/// <summary>
 /// Raises the <see cref="E:ReplaceAllComplete"/> event.
 /// </summary>
 /// <param name="e">The <see cref="Konesans.Dts.ExpressionEditor.Controls.FindOrReplaceEventArgs"/> instance containing the event data.</param>
 public virtual void OnReplaceAllComplete(FindOrReplaceEventArgs e)
 {
     if (this.ReplaceAllComplete != null)
     {
         this.ReplaceAllComplete(this, e);
     }
 }
 /// <summary>
 /// Raises the <see cref="E:FindNotFound"/> event.
 /// </summary>
 /// <param name="e">The <see cref="Konesans.Dts.ExpressionEditor.Controls.FindOrReplaceEventArgs"/> instance containing the event data.</param>
 public virtual void OnFindNotFound(FindOrReplaceEventArgs e)
 {
     if (this.FindNotFound != null)
     {
         this.FindNotFound(this, e);
     }
 }