|
 |
|
NOTE: This Design document is subject to change at any time. |
List
Syntax: <LIST property-list>group items</LIST>
Creates a list of items.
Items can be added with the ItemList property, or by placing a GROUPITEM within the group. For example, you can use the code:
Code: |
<LIST ItemList='Item 1|Item 2|Item 3'/> |
or the equivalent code:
Code: |
<LIST>
<GROUPITEM Caption='Item 1'/>
<GROUPITEM Caption='Item 2'/>
<GROUPITEM Caption='Item 3'/>
</LIST> |
The advantage of the second method is that you can also specify the Value property of each item.
The ValueType property has options for different formats for the Value property of this control. By default, a numeric value formed by "ORing" the values of the selected items is returned. |
|