ImageGear for C and C++ on Windows v19.9 - Updated
ART_GUI_property_sheet_show
API Reference Guide > ARTGUI Component API Reference > ARTGUI Component Functions Reference > ART_GUI_property_sheet_show

This function displays the property sheet.

Declaration:

 
Copy Code
BOOL FAR PASCAL ART_GUI_property_sheet_show(
        HARTPROPSHEET hPropertySheet
);

Arguments:

Name Type Description
hPropertySheet HARTPROPSHEET 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);
}
. . .