ControlIdsToCheck Property

UltimateSpell

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets the comma separated list of controls to spell check or to exclude.

Namespace: Karamasoft.WebControls.UltimateSpell
Assembly: UltimateSpell (in UltimateSpell.dll) Version: 3.7.4186.26738

Syntax

C#
public virtual string ControlIdsToCheck { get; set; }
Visual Basic
Public Overridable Property ControlIdsToCheck As String
	Get
	Set
Visual C++
public:
virtual property String^ ControlIdsToCheck {
	String^ get ();
	void set (String^ value);
}

Field Value

Comma separated list of controls to spell check or to exclude.

Remarks

Use this property to set the comma separated list of controls to spell check or to exclude. If you specify a list of controls to spell check such as "TextBox1,TextBox2", it will spell check only those two controls on the page. If you put a minus sign at the head of the control ids such as "-TextBox1,-TextBox2", it will spell check all controls on the page except TextBox1 and TextBox1. If left empty, it automatically spell checks all editable areas on the page.

See Also