Group2D.Append

From Real Software Documentation

Jump to: navigation, search
Method
Group2D.Append ( Object as Object2D )

Appends the object passed to it.

Example

This example uses Append twice to construct the Group2D object.

Dim px as PixmapShape
Dim s as StringShape
Dim d as New Group2D
dim o as new Object2D

px=New PixmapShape(DSC_0343)
d.append px

s=New StringShape
s.y=70
s.Text="This is what I call a REAL car!"
s.TextFont="Helvetica"
s.Bold=true
d.append s

g.drawobject d,100,100
Personal tools