Version

SpellChecker Property

Gets/sets the component that will perform spell checking on this control.
Syntax
'Declaration
 
Public Overridable Property SpellChecker As Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker
public virtual Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker SpellChecker {get; set;}
Example
This sample shows how to implement spell check support for an UltraTextEditor with the UltraSpellCheckerComponent.

Imports Infragistics.Win.UltraWinSpellChecker

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

	'Set the spell checker for the UltraTextEditor so it may be spell checked
	Me.UltraTextEditor1.SpellChecker = Me.UltraSpellChecker1

End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;

private void Form_Load( object sender, EventArgs e )
{
	//Set the spell checker for the UltraTextEditor so it may be spell checked
	this.ultraTextEditor1.SpellChecker = this.ultraSpellChecker1;
}
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