This function moves a group of marks to the front of the stacking order.
Declaration:
Copy Code | |
---|---|
AT_ERRCOUNT ART_group_bring_to_front(
HIGEAR hIGear,
const LPSTR szGroupName
);
|
Arguments:
Name | Type | Description |
hIGear | HIGEAR | HIGEAR handle to the image. |
szGroupName | const LPSTR | Far pointer to a NULL-terminated string containing the mark group name. |
Return Value:
Returns the number of ImageGear errors that occurred during the function call.
Supported Raster Image Formats:
All pixel formats supported by ImageGear Professional.
Sample:
None
Example:
Copy Code | |
---|---|
HIGEAR hIGear; /* HIGEAR handle of image */ char FAR *szGroupName; /* Name of group to */ /* bring to front */ nErrcount = ART_group_bring_to_front(hIGear,szGroupName); |
Remarks:
An error is set if any of the following conditions are met:
- hIGear does not reference a valid ImageGear handle.
- No group matches szGroupName.