1XmListItemExists(library call) XmListItemExists(library call)
2
3
4
6 XmListItemExists — A List function that checks if a specified item is
7 in the list
8
10 #include <Xm/List.h>
11 Boolean XmListItemExists(
12 Widget widget,
13 XmString item);
14
16 XmListItemExists is a Boolean function that checks if a specified item
17 is present in the list.
18
19 widget Specifies the ID of the List widget
20
21 item Specifies the item whose presence is checked
22
23 For a complete definition of List and its associated resources, see
24 XmList(3).
25
27 Returns True if the specified item is present in the list.
28
30 XmList(3).
31
32
33
34 XmListItemExists(library call)