class Standard . DrawingFrame {
array backgroundColor;
set objectList;
} inherits from Object;
A DrawingFrame object maintains a collection of DrawingObject primitives.
DrawingFrame:setBackgroundColor(int32 red, int32 green, int32 blue, int32 alpha)
Set the color for the DrawingFrame.
DrawingFrame:getBackgroundColor()
Returns the background color of the DrawingFrame as an array (red, green, blue).
DrawingFrame:addObject(oid obj)
Add a DrawingObject primitive to the DrawingFrame.