Version

SpellChecker Property

Gets/sets the component that will perform spell checking on this control.
Syntax
'Declaration
 
Public Property SpellChecker As Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker
public Infragistics.Win.UltraWinSpellChecker.IUltraSpellChecker SpellChecker {get; set;}
Example
This sample shows how to enable spell checking for a column in an UltraGrid.

Imports Infragistics.Win.UltraWinSpellChecker

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

	'Set the second column on the first band to be spell checked be the spell checker
	Me.UltraGrid1.DisplayLayout.Bands(0).Columns(1).SpellChecker = Me.spellChecker

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

private void Form1_Load( object sender, EventArgs e )
{
	//Set the second column on the first band to be spell checked be the spell checker
	this.ultraGrid1.DisplayLayout.Bands[ 0 ].Columns[ 1 ].SpellChecker = this.spellChecker;
}
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