INPUTTYPE Property
PLBCMP GUI Only, 10.5
The INPUTTYPE property sets the input 'type' of the HTML <input> tag used by an EDITTEXT web object.. The property uses the following format:
INPUTTYPE={value}
Note the following:
INPUTTYPE may be used in CREATE, SETPROP or GETPROP statements for an EDITTEXT web object.
The INPUTTYPE property is only used when an EDITTEXT object has been created as a web object using the WebView mode.
{value} is a Numeric Variable or Decimal number or a keyword defined in PLBEQU.INC where the value identifies the input type. The allowed values are defined as follows:
|
Value |
Keyword |
The input type is ... |
|
0 |
$ET_INPUTDEFAULT |
text. |
|
1 |
$ET_INPUTCOLOR |
color. |
|
2 |
$ET_INPUTDATE |
date. |
|
3 |
$ET_INPUTDTLOCAL |
datetime - local. |
|
4 |
$ET_INPUTEMAIL |
email. |
|
5 |
$ET_INPUTMONTH |
month. |
|
6 |
$ET_INPUTNUMBER |
number. |
|
7 |
$ET_INPUTPASSWORD |
password. |
|
8 |
$ET_INPUTSEARCH |
search. |
|
9 |
$ET_INPUTTEL |
telephone. |
|
10 |
$ET_INPUTTEXT |
text. |
|
11 |
$ET_INPUTTIME |
time. |
|
12 |
$ET_INPUTURL |
URL. |
|
13 |
$ET_INPUTWEEK |
week. |
For more information about HTML <input> tag and input type, see the following link:
https://www.w3schools.com/tags/tag_input.asp
See Also: Object Properties, Object IO Instructions, Object Definitions
![]() |