Next Previous Up Top Contents Index

8.11 DUIM-Gadgets Module

add-item

Generic function

Summary

Adds an item to the specified list or table control.

Signature

add-item list-or-table item #key after => item

Arguments

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

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

after
An instance of type type-union(<list-item>,<table-item>).

Values

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

Library

duim-gadgets

Module

duim-gadgets

Description

Adds an item to the specified list-or-table. The new item is created via a call to make-item.

The after argument indicates which item to place the new item after.

See also

find-item, page 547

<list-control>, page 601

<list-item>, page 609

make-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