1XmRenderTableCvtFromProp(library call) XmRenderTableCvtFromProp(library call)
2
3
4
6 XmRenderTableCvtFromProp — A render table function that converts from a
7 string representation to a render table
8
10 #include <Xm/Xm.h>
11 XmRenderTable XmRenderTableCvtFromProp(
12 Widget widget,
13 char *property,
14 unsigned int length);
15
17 XmRenderTableCvtFromProp converts a string of characters representing a
18 render table to a render table. This routine is typically used by the
19 destination of a data transfer operation to produce a render table from
20 a transferred representation.
21
22 widget Specifies the widget that is the destination for the render
23 table
24
25 property Specifies a string of characters representing a render table
26
27 length Specifies the number of bytes in property
28
30 Returns a render table. The function allocates space to hold the
31 returned render table. The application is responsible for managing
32 this allocated space. The application can recover this allocated space
33 by calling XmRenderTableFree.
34
36 XmRenderTable(3), XmRenderTableCvtToProp(3), and XmRenderTableFree(3).
37
38
39
40 XmRenderTableCvtFromProp(library call)