|
A number of the parameters can be used to override the basic settings
of the object. This provides a quick and easy way to temporarily
set values for one particular operation.
For instance if you had been drawing text in 12 point Times (your
default style) and just wanted to do one piece of drawing in 10
point Arial you might write code like the following.
DrawText "12 Point Times", "Pos=0,0"
DrawText "10 Point Arial", "Pos=0,30 TextFont=Arial
TextSize=10"
DrawText "12 Point Times", "Pos=0,60"
|