displayStyleEnum

The displayStyleEnum element defines the display style of a collection variable. Simple collections can be displayed as either a numbered list or a bulleted list.  Object collections can be displayed in table rows only.

Simple Collection Display                Object Collection Display

Element Structure

The displayStyleEnum element structure is as follows:

<xs:simpleType name="displayStyle">

<xs:restriction base="xs:string">

<xs:enumeration value="BulletedList" />

<xs:enumeration value="NumberedList" />

<xs:enumeration value="TableRows" />

</xs:restriction>

</xs:simpleType>

Sub-elements

The displayStyleEnum element contains the following sub-elements:

Name

Data Type

Comment

displayStyle

string

BulletedList: Shows the collection as a bulleted list (relevant for simple collections only).

NumberedList: Shows the collection as a numbered list (relevant for simple collections only).

TableRows: Shows the collection as a table (relevant for object collections only).