| Allegro CL version 10.1 Unrevised from 10.0 to 10.1. 10.0 version |
Arguments: outline
Returns the value of the select-on-multiple-characters-item-test property
of an outline
control. The
value may be specified at creation time by passing the
select-on-multiple-characters-item-test initarg
to make-instance, or any time
later by calling (setf
select-on-multiple-characters-item-test).
This outline
widget
property has an effect only when the outline's select-on-multiple-characters property is true
to allow finding an outline item by typing the first several
characters of the string that it displays.
In that case, this property should be the name of a function that can
be used to arbitrarily exclude some outline items from the search, or
else nil
to include all items in the search.
The default value is nil
. When the value is
a function name, the function will be called whenever a matching
outline-item
is found. The
function should accept a single argument, which is the matching
outline-item
. It should
return true if the search should really match this outline-item, or
nil
to skip the item.
Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page was not revised from the 10.0 page.
Created 2019.8.20.
| Allegro CL version 10.1 Unrevised from 10.0 to 10.1. 10.0 version |