'Declaration Public Event SpellCheckDialogClosed As SpellCheckDialogClosedEventHandler
public event SpellCheckDialogClosedEventHandler SpellCheckDialogClosed
The event handler receives an argument of type SpellCheckDialogClosedEventArgs containing data related to this event. The following SpellCheckDialogClosedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DialogResult | Gets the dialog result for the form. |
SpellCheckDialog | Gets the spell check dialog which closed. |
SpellCheckTarget (Inherited from Infragistics.Win.UltraWinSpellChecker.SpellCheckTargetEventArgs) | Gets the object which was spell checked. |
Imports Infragistics.Win.UltraWinSpellChecker Private Sub ultraSpellChecker1_SpellCheckDialogClosed(ByVal sender As Object, ByVal e As SpellCheckDialogClosedEventArgs) Handles ultraSpellChecker1.SpellCheckDialogClosed 'If the dialog has closed normally... If e.DialogResult = DialogResult.OK Then 'Notify the user that spell checking has completed MessageBox.Show("Finished spell checking") End If End Sub
using System.Windows.Forms; using Infragistics.Win.UltraWinSpellChecker; private void ultraSpellChecker1_SpellCheckDialogClosed( object sender, SpellCheckDialogClosedEventArgs e ) { //If the dialog has closed normally... if( e.DialogResult == DialogResult.OK ) { //Notify the user that spell checking has completed MessageBox.Show( "Finished spell checking" ); } }
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