1XmStringPutRendition(library call) XmStringPutRendition(library call)
2
3
4
6 XmStringPutRendition — A convenience function that places renditions
7 around strings
8
10 #include <Xm/Xm.h>
11 XmString XmStringPutRendition(
12 XmString string,
13 XmStringTag rendition);
14
16 XmStringPutRendition places matching Xm_STRING_COMPONENT_RENDI‐
17 TION_BEGIN and XmSTRING_COMPONENT_RENDITION_END components containing
18 rendition around string. The original string is preserved.
19
20 string Specifies the compound string to which begin and end rendi‐
21 tion components should be added.
22
23 rendition Specifies the rendition tag to be used in an XmSTRING_COMPO‐
24 NENT_RENDITION_BEGIN component which will begin the returned
25 string and in an XmSTRING_COMPONENT_RENDITION_END component
26 which will end it.
27
29 Returns a new compound string. The function allocates space to hold
30 this returned compound string. When the application no longer needs
31 the returned compound string, the application should call XmStringFree.
32
34 XmString(3).
35
36
37
38 XmStringPutRendition(library call)