Gets or sets a value indicating whether the text entered in the field is spell-checked.
Syntax
'Declaration
Public Property DoNotSpellCheck As Boolean
'Usage
Dim instance As TextField
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