Generic function
Returns the view for the specified list control.
list-control-view list-control => view
<list-control>.
<list-control-view>.
duim-gadgets
duim-gadgets
Returns the view for list-control. The view defines how items in the list control are displayed. Three views are available; items are accompanied either by a small icon or a large icon. In addition, items can be listed vertically, and additional details can be displayed for each item. For more details, see the description for <list-control-view>, page 606.
Given a list control created with the following code:
*list* := contain(make(<list-control>,
items: #(#("One", #"one"),
#("Two", #"two"),
#("Three", #"three")),
view: #"list"
scroll-bars: #f));The list control view may be returned with:
list-control-view(*list*);
list-control-view-setter, page 608