This function displays the property sheet.
Declaration:
Copy Code | |
---|---|
BOOL FAR PASCAL ART_GUI_property_sheet_show( HARTPROPSHEET hPropertySheet ); |
Arguments:
hPropertySheet | ART handle to the Property Sheet. |
Return Value:
Returns TRUE is the user clicked OK to exit; FALSE if the user clicked Cancel to exit.
Supported Raster Image Formats:
This function does not process image pixels.
Sample:
Annotation
Example:
Copy Code | |
---|---|
HIGEAR hIGear; /* HIGEAR handle of image */ AT_ERRCOUNT nErrcount; /* tally of ImageGear */ /* errors */ HARTPROPSHEET hPropertySheet; /* handle to the */ /* property sheet */ ART_MARK_ATTRIBUTES ma; /* Structure for mark */ /* attributes */ /* If the user clicked OK, query the property sheet */ if (ART_GUI_property_sheet_show(hPropertySheet)) { /* first query the attributes settings */ nErrcount = ART_GUI_property_sheet_query(hPropertySheet, ART_GUI_QUERY_ATTRIBUTES,&ma,NULL,NULL,NULL); } . . . |