Next Previous Up Top Contents Index

8.11 DUIM-Gadgets Module

list-control-view-setter

Generic function

Summary

Sets the view for the specified list control.

Signature

list-control-view-setter view list-control => view

Arguments

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

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

Values

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

Library

duim-gadgets

Module

duim-gadgets

Description

Sets 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", 
                                "Two", 
                                "Three")));

The list control view may be specified with:

list-control-view(*list*) := #"view";

See also

<list-control>, page 601

<list-control-view>, page 606

list-control-view, page 607


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index