SiteComp.TAdapterInputHTMLElementType
From RAD Studio API Documentation
Delphi
TAdapterInputHTMLElementType = ( htmliNone, htmliTextInput, htmliPasswordInput, htmliSelect, htmliSelectMultiple, htmliRadio, htmliCheckBox, htmliTextArea, htmliFile);
C++
enum DECLSPEC_DENUM TAdapterInputHTMLElementType : unsigned char { htmliNone, htmliTextInput, htmliPasswordInput, htmliSelect, htmliSelectMultiple, htmliRadio, htmliCheckBox, htmliTextArea, htmliFile };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | SiteComp.pas SiteComp.hpp |
SiteComp | SiteComp |
Description
TAdapterInputHTMLElementType identifies an HTML input type that can be used to edit the value(s) associated with an adapter field.
Each element type indicates a different HTML element. TAdapterDisplayHTMLElementType defines read-only HTML elements. TAdapterInputHTMLElementType defines editable HTML elements.
The following table lists the possible values:
| Value | Meaning |
|---|---|
|
htmliNone |
No type specified |
|
htmliTextInput |
Single line input element |
|
htmliPasswordInput |
Single line password input element |
|
htmliSelect |
Single selection list |
|
htmliSelectMultiple |
Multiple select list |
|
htmliRadio |
Group of radio buttons |
|
htmliCheckBox |
Group of check boxes |
|
htmliTextArea |
Multi-line input element |
|
htmliFile |
File upload element |