GetCaseSensitive Method
The GetCaseSensitive method determines whether or not a control is case sensitive. It returns one of the following values:
1. The control is case sensitive.
0. The control is not case sensitive.
It uses the following syntax:
GetCaseSensitive()
It includes no arguments.
For example:
if (control.GetCaseSensitive() === "1"){
// This is the account control.
alert ("Make sure you use the correct case.");
}