Group2D.Append

From Xojo Documentation

Method

Group2D.Append(Object as Object2D)

Supported for all project types and targets.

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

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)