1XmIconBoxIsCellEmpty(library call) XmIconBoxIsCellEmpty(library call)
2
3
4
6 XmIconBoxIsCellEmpty — A function that determines whether a cell in the
7 IconBox is empty
8
10 #include <Xm/IconBox.h>
11 Boolean XmIconBoxIsCellEmpty(
12 Position cell_x,
13 Position cell_y,
14 Widget ignore);
15
17 XmIconBoxIsCellEmpty returns True if specified cell contains no child
18 and False otherwise.
19
20 widget Specifies the IconBox widget ID
21
22 cell_x Specifies the X location of the cell to check
23
24 cell_y Specifies the Y location of the cell to check
25
26 ignore If the widget ID specified by ignore is present in the speci‐
27 fied cell, it will be ignored and the function will return
28 True
29
31 Returns True if the specified cell contains no child, and False other‐
32 wide.
33
35 XmIconBox(3).
36
37
38
39 XmIconBoxIsCellEmpty(library call)