Next Previous Up Top Contents Index

8.11 DUIM-Gadgets Module

list-control-view

Generic function

Summary

Returns the view for the specified list control.

Signature

list-control-view list-control => view

Arguments

list-control
An instance of <list-control>.

Values

view
An instance of type <list-control-view>.

Library

duim-gadgets

Module

duim-gadgets

Description

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.

Example

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*);

See also

<list-control>, page 601

<list-control-view>, page 606

list-control-view-setter, page 608


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index