1XmStringExtent(library call) XmStringExtent(library call)
2
3
4
6 XmStringExtent — A compound string function that determines the size of
7 the smallest rectangle that will enclose the compound string
8
10 #include <Xm/Xm.h>
11 void XmStringExtent(
12 XmRenderTable rendertable,
13 XmString string,
14 Dimension *width,
15 Dimension *height);
16
18 XmStringExtent determines the width and height, in pixels, of the
19 smallest rectangle that will enclose the provided compound string.
20
21 rendertable
22 Specifies the render table
23
24 string Specifies the string
25
26 width Specifies a pointer to the width of the rectangle
27
28 height Specifies a pointer to the height of the rectangle
29
31 XmStringCreate(3).
32
33
34
35 XmStringExtent(library call)