CONTAINERPAINTDATA
typedef struct _CONTAINERPAINTDATA
{
pBITMAPHANDLE pBitmap ;
HPALETTE hRestrictionPalette ;
} CONTAINERPAINTDATA, *pCONTAINERPAINTDATA ;
The CONTAINERPAINTDATA contains information used when adding a new container during automated digital painting.
Member |
Description |
pBitmap |
Pointer to the bitmap handle that references the bitmap on which the drawing will occur. This parameter should be a valid LEAD bitmap handle; otherwise all the paint automation functions will return an error. |
hRestrictionPalette |
The restriction palette will be used by the automation to restrict the painting output to the nearest colors that could be found in this palette. If this field is NULL, no color restriction will be made by the toolkit. |
|
The toolkit will copy the given handle; therefore the user can delete the handle after the function call ends. |
Comments
This structure will be used only by the automated digital painting functions.