Gets or sets a value indicating whether the text entered in the field is spell-checked.
NOTE: ImageGear .NET does not currently adhere to the behavior of this property. It is available for read and write for exporting purposes.
Syntax
'Declaration
Public Property DoNotSpellCheck As Boolean
'Usage
Dim instance As ComboBox
Dim value As Boolean
instance.DoNotSpellCheck = value
value = instance.DoNotSpellCheck
public bool DoNotSpellCheck {get; set;}
public: __property bool get_DoNotSpellCheck();
public: __property void set_DoNotSpellCheck(
bool value
);
public:
property bool DoNotSpellCheck {
bool get();
void set ( bool value);
}
Property Value
Whether the text entered in the field is spell-checked. This will only be
meaningful if both the Combo and Edit flags are set.
See Also