1XmTabListGetTab(library call) XmTabListGetTab(library call)
2
3
4
6 XmTabListGetTab — A convenience function that returns a copy of a tab
7
9 #include <Xm/Xm.h>
10 XmTab XmTabListGetTab(
11 XmTabList tablist,
12 Cardinal position);
13
15 XmTabListGetTab returns a copy of the tab that is located at the speci‐
16 fied position in the tab list.
17
18 tablist Specifies the tab list.
19
20 position Specifies the position of the tab to be returned. A value of
21 0 (zero) returns the first tab in the tab list, a value of 1
22 returns the second tab, and so on.
23
25 Returns a copy of the tab that is located at the specified position in
26 the tab list. If position is greater than or equal to the number of
27 tabs in the tab list, this function returns NULL. The application is
28 responsible for managing the space allocted by the returned tab copy.
29 The application can recover this allocated space by calling XmTabFree.
30
32 XmTabFree(3) and XmTabList(3).
33
34
35
36 XmTabListGetTab(library call)