Name
BrushToBGPic -- convert a brush to a background picture
Synopsis
BrushToBGPic(brushid, bgpicid)
Function
This function makes a copy of the brush specified by brushid and converts it to a new background picture that has the identifier bgpicid. Everything will be cloned so the background picture is independent of the brush (you could free the brush after this operation for example and the background picture would still be usable!).

Inputs
brushid
brush to clone
bgpicid
id for the new background picture
Example
BrushToBGPic(1,2)
DisplayBGPic(2)
The above code copies the brush 1 to background picture 2 and displays it then.

Show TOC