1XmMultiListGetSelectedRowArray(librXamrMyulctailLli)stGetSelectedRowArray(library call)
2
3
4
6 XmMultiListGetSelectedRowArray — an MultiList function that returns an
7 array of integers which are selected row numbers.
8
10 #include <Xm/MultiList.h>
11 int * XmMultiListGetSelectedRowArray(
12 Widget widget,
13 int * num_rows);
14
16 This routine creates an array of integers which are selected row num‐
17 bers in the MultiList widget.
18
19 widget Specifies the ID of the MultiList widget.
20
21 num_rows Specifies pointer to the integer indicates number of returned
22 row numbers.
23
24 For a complete definition of MultiList and its associated resources,
25 see XmMultiList(3).
26
28 The int * returned by this function contains a selected rows numbers
29 array. The calling routine is responsible for freeing the returned
30 pointer with XtFree(). The function will return NULL if no elements
31 are selected.
32
34 XmMultiList(3).
35
36
37
38 XmMultiListGetSelectedRowArray(library call)