RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebForm.TInputFieldHTMLElementType Enumeration

TInputFieldHTMLElementType identifies an HTML type that can be used to display the value(s) associated with an adapter field.

Pascal
TInputFieldHTMLElementType = (
  iftDefault,
  iftTextInput,
  iftPasswordInput,
  iftSelect,
  iftSelectMultiple,
  iftRadio,
  iftCheckBox,
  iftTextArea,
  iftFile
);
C++
enum TInputFieldHTMLElementType {
  iftDefault,
  iftTextInput,
  iftPasswordInput,
  iftSelect,
  iftSelectMultiple,
  iftRadio,
  iftCheckBox,
  iftTextArea,
  iftFile
};

TInputFieldHTMLElementType defines the set of possible HTML controls that can be used to input an adapter field value. The following table lists the possible values for the TInputFieldHTMLElementType type and the meaning corresponding to each flag:

Flag 
Input field type 
iftCheckBox  
The input field is a check box.  
iftDefault  
The input field is the default type.  
iftFile  
The input field is a file.  
iftPasswordInput  
The input field is a password prompt.  
iftRadio  
The input field is a radio button.  
iftSelect  
The input field is selectable. iftSelect is only used with iftCheckBox and iftRadio.  
iftSelectMultiple  
More than one input field may be selected at a time. iftSelectMultiple is only used with iftCheckBox and iftRadio.  
iftTextArea  
The field is a text area.  
iftTextInput  
The input field is a text input box.  

 

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