Important: The information in this document is obsolete and should not be used for new development.
StdRRect
TheStdRRectprocedure is QuickDraw's standard low-level routine for drawing a rounded rectangle.
PROCEDURE StdRRect (verb:\xDDGrafVerb; r:\xDDRect; ovalwidth,ovalHeight:\xDDInteger)
verb- One of the following actions to perform, as defined for the
GrafVerbdata type:GrafVerb = (frame, paint, erase, invert, fill);
r- The rectangle to draw.
ovalwidth- The width diameter for the corner oval.
ovalHeight
The height diameter for the corner oval.DESCRIPTION
TheStdRRectprocedure draws the rounded rectangle specified in therparameter according to the action specified in theverbparameter. TheovalWidthandovalHeightparameters specify the diameters of curvature for the corners.SPECIAL CONSIDERATIONS
TheStdRRectprocedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.