Go to the source code of this file.
|  | 
| const short | ListBox = 1 | 
|  | denotes a control which allows the user to choose from a list of possible property values 
 | 
| const short | ComboBox = 2 | 
|  | denotes a control which allows the user to choose from a list of possible property values, combined with the possibility to enter a new property value. 
 | 
| const short | TextField = 3 | 
|  | denotes a control which allows the user to enter property values consisting of a single line of text 
 | 
| const short | MultiLineTextField = 4 | 
|  | denotes a control which allows the user to enter pure text, including line breaks 
 | 
| const short | CharacterField = 5 | 
|  | denotes a control which allows the user to enter a single character 
 | 
| const short | StringListField = 6 | 
|  | denotes a control which allows the user to enter a list of single-line strings 
 | 
| const short | ColorListBox = 7 | 
|  | denotes a control which allows the user to choose from a list of colors. 
 | 
| const short | NumericField = 8 | 
|  | denotes a control which allows the user to enter a numerical value 
 | 
| const short | DateField = 9 | 
|  | denotes a control which allows the user to enter a date value 
 | 
| const short | TimeField = 10 | 
|  | denotes a control which allows the user to enter a time value 
 | 
| const short | DateTimeField = 11 | 
|  | denotes a control which allows the user to enter a combined date/time value 
 | 
| const short | HyperlinkField = 12 | 
|  | denotes a control which displays a string in a hyperlink-like appearance 
 | 
| const short | Unknown = 13 | 
|  | denotes a non-standard property control, which is usually provided by an XPropertyHandler 
 |