Version

NoErrorsFound Event

Fired when the spell check dialog is called to check errors and there are no errors.
Syntax
'Declaration
 
Public Event NoErrorsFound As NoErrorsFoundEventHandler
public event NoErrorsFoundEventHandler NoErrorsFound
Event Data

The event handler receives an argument of type NoErrorsFoundEventArgs containing data related to this event. The following NoErrorsFoundEventArgs properties provide information specific to this event.

PropertyDescription
SpellCheckTarget (Inherited from Infragistics.Win.UltraWinSpellChecker.SpellCheckTargetEventArgs)Gets the object which was spell checked.
Example
This sample shows how to notify users that no errors were found when a control is spell checked.

For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic and Visual C#. For specific information and code examples illustrating how to consume events in your application, see Consuming Events in the .NET Framework Developer's Guide.

Imports Infragistics.Win.UltraWinSpellChecker

Private Sub ultraSpellChecker1_NoErrorsFound(ByVal sender As Object, ByVal e As NoErrorsFoundEventArgs) Handles ultraSpellChecker1.NoErrorsFound
	'Notify the user that no errors were found in the text.
	MessageBox.Show("No errors were found")
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;

private void ultraSpellChecker1_NoErrorsFound(object sender, NoErrorsFoundEventArgs e)
{
	//Notify the user that no errors were found in the text.
	MessageBox.Show( "No errors were found" );
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also