Next Previous Up Top Contents Index

8.11 DUIM-Gadgets Module

make-item

Generic function

Summary

Creates an item which can be inserted in the specified list control or table control.

Signature

make-item list-or-table object #key frame-manager => item

Arguments

list-or-table
An instance of type-union
(<list-control>, <table-control>)
.

object
An instance of type <object>.

frame-manager
An instance of type <frame-manager>.

Values

item
An instance of type <list-item>.

Library

duim-gadgets

Module

duim-gadgets

Description

Creates an item that represents object which can be inserted in the specified list-or-table. To insert the item in the list control or table control, add-item is used. You would not normally call make-item explicitly: just use add-item and the item is created automatically before it is added to the list or table control.

If the frame-manager argument is specified, then this is used instead of the default frame manager.

See also

add-item, page 528

find-item, page 547

<list-control>, page 601

<list-item>, page 609

remove-item, page 636

<table-control>, page 666

<table-item>, page 672


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index