Version

CheckText Method

Spell checks the specified text and returns a collection of errors in the text.
Syntax
'Declaration
 
Public Function CheckText( _
   ByVal text As String _
) As ErrorCollection
public ErrorCollection CheckText( 
   string text
)

Parameters

text
The text to spell check.

Return Value

An ErrorCollection containing the errors in the text.
Example
This sample shows how to determine the number of errors in some text.

Imports Infragistics.Win.UltraWinSpellChecker

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
	Dim text As String = "Thiis is som mispelled text."

	'Get a collection of the errors in the text
	Dim errors As ErrorCollection = Me.spellChecker.CheckText(text)

	MessageBox.Show("The text: """ + text + """ contains " + errors.Count.ToString() + " errors.")
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;

private void button1_Click( object sender, EventArgs e )
{
	string text = "Thiis is som mispelled text.";

	//Get a collection of the errors in the text
	ErrorCollection errors = this.spellChecker.CheckText( text );

	MessageBox.Show( "The text: \"" + text + "\" contains " + errors.Count + " errors." );
}
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