listInline - Inline List Container

Organizes constituent controls into a horizontal list.

Category

Extension Library

Syntax

<xe:listInline attributes>content</xe:listInline>
Table 1. Essential properties
Property Description
id Defaults to listInline1, listInline2, and so on.

Usage

This control is intended to contain controls that display text.

Examples

This example displays a horizontal list of three elements.
<xp:label value="Here is an inline list:" id="label4"></xp:label>
<xe:listInline id="list1">
	<xp:label value="Element one" id="label1"></xp:label>
	<xp:label value="Element two" id="label2"></xp:label>
	<xp:label value="Element three" id="label3"></xp:label>
</xe:listInline>