<div class="meta" robots="noindex">

</div>

Method

# Group2D.Append

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

<div class="warning">

<div class="title">

Warning

</div>

This item was deprecated in version 2019r2. Please use `Group2D.AddObject<group2d.addobject>` as a replacement.

</div>

## Description

Appends the object passed to it.

## Sample code

This example uses <span class="title-ref">Append</span> twice to construct the Group2D object.

``` xojo
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)
```

## Compatibility

All project types on all supported operating systems.
