AutoDetectLanguage Property

UltimateSpell

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets a value that indicates whether the language is automatically detected on the client machine from browser settings.

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

Syntax

C#
public virtual bool AutoDetectLanguage { get; set; }
Visual Basic
Public Overridable Property AutoDetectLanguage As Boolean
	Get
	Set
Visual C++
public:
virtual property bool AutoDetectLanguage {
	bool get ();
	void set (bool value);
}

Field Value

true if the language is automatically detected; otherwise, false. The default value is false.

Remarks

Use this property to automatically detect the language on the client machine. If you want to set the Language property to a specific language you should set this property to false, and use the Language property. Note that if the automatically detected language is English, German, Spanish, French or Italian it will also set the dictionary to en-US, de-DE, es-ES, fr-FR or it-IT respectively. If the language is not English, German, Spanish, French or Italian it will use the language set by the Language property.

See Also