Important: The information in this document is obsolete and should not be used for new development.
StdRgn
TheStdRgn
procedure is QuickDraw's standard low-level routine for drawing a region.
PROCEDURE StdRgn (verb:\xDDGrafVerb; rgn:\xDDRgnHandle);
verb
- One of the following actions to perform, as defined for the
GrafVerb
data type:GrafVerb = (frame, paint, erase, invert, fill);
rgn
- A handle to the region data.
DESCRIPTION
TheStdRgn
procedure draws the region specified in thergn
parameter according to the action specified in theverb
parameter.SPECIAL CONSIDERATIONS
TheStdRgn
procedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.