A
List Control provides a visual representation of a
Static,
Dynamic or Custom List to the end-user.
A List Control automatically creates a
List Item Control containing a
List Text Control that displays the value of each item in the associated List. You can replace the List Text Control with a
List Hyperlink Control display the value as a hyperlink.
You can attach a Static or Dynamic List in the
Properties View of the List Control. Custom Lists are created programatically on the List Control, eg.
// create simple list with three entries on my List Control
var list = ["Line 1", "Line 2", "Line 3"];
controls.myListControl.createCustomList(list);