RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SiteComp.TAdapterInputHTMLElementType Enumeration

TAdapterInputHTMLElementType identifies an HTML input type that can be used to edit the value(s) associated with an adapter field.

Pascal
TAdapterInputHTMLElementType = (
  htmliNone,
  htmliTextInput,
  htmliPasswordInput,
  htmliSelect,
  htmliSelectMultiple,
  htmliRadio,
  htmliCheckBox,
  htmliTextArea,
  htmliFile
);
C++
enum TAdapterInputHTMLElementType {
  htmliNone,
  htmliTextInput,
  htmliPasswordInput,
  htmliSelect,
  htmliSelectMultiple,
  htmliRadio,
  htmliCheckBox,
  htmliTextArea,
  htmliFile
};

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  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!