int kcolor_print_attribute(
kobject object,
char *attribute,
kfile *printfile)
none
This color service function should be used in conjunction with other application services such as polymorphic data services and geometry data services. This function will work on data objects opened or created with either of those services.
The following example illustrates the use of the print attribute call to print the colorspace attribute to the output file "outputfile".
kfile *outfile = kfopen("outputfile");
kcolor_print_attributes(object, KCOLOR_COLORSPACE, outfile);
A complete list of color attributes can be found in Chapter 4 of Programming Services Volume II.
none
none
$DATASERV/objects/library/kappserv/src/color.c