'Declaration Public Event NoErrorsFound As NoErrorsFoundEventHandler
public event NoErrorsFoundEventHandler NoErrorsFound
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.
Property | Description |
---|---|
SpellCheckTarget (Inherited from Infragistics.Win.UltraWinSpellChecker.SpellCheckTargetEventArgs) | Gets the object which was spell checked. |
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" ); }
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