Group2D.Insert
From Xojo Documentation
This item was deprecated in version 2019r2. Please use Group2D.AddAt as a replacement. |
Method
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.
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)
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)