Web: Can I add a ImageView dynamically without the Xojo VisualEditor?

I want to add a ImageView without the Visual Editor in the Open Event of a webpage.

I would generate it so:

DIM ImageView_Color9 As WebImageView
ImageView_Color9.Left = 490
ImageView_Color9.Top = 572
ImageView_Color9.Height = 35
ImageView_Color9.Width = 50
ImageView_Color9.LockBottom = true
ImageView_Color9.LockRight = true
ImageView_Color9.LockLeft = false
ImageView_Color9.LockTop = false
ImageView_Color9.Picture = TestFarbe
ImageView_Color9.Visible = true
ImageView_Color9.Enabled = true

But I don’t know, how to add it to my “Page1”?

Is there a method like: Page1.add (ImageView_Color9) ?

You can dynamically add WebContainers to pages at run-time. So, create a WebContainer, put your ImageView on it and then add container to your page.