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

</div>

Method

# Group2D.Insert

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

<div class="warning">

<div class="title">

Warning

</div>

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

</div>

## Description

Inserts the object passed to it at the specified location.

## Sample code

This example inserts a text string as the second object in the Group2D.

``` xojo
Dim px As PixmapShape
Dim s As StringShape
Dim s2 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)

s2 = New StringShape

s2.Y = 20
s2.Text = "This is inserted text!"
s2.TextFont = "Helvetica"
s2.Bold = True
d.Insert(1, s2)

g.DrawObject(d, 100, 100)
```

## Compatibility

All project types on all supported operating systems.
