Dim i As ImageView
i.Initialize("")
i.Gravity = Gravity_Center
Dim bmp As Bitmap = LoadBitmapResize(dirname, filename, i.Width, i.Height, True)
i.Bitmap = bmp
Dim pix As Int
pix = bmp. ' I could select GetPixel from the Intellisence shown here after typing period
pix = i.Bitmap. ' no Intellisense shown here after typing period so I have to type GetPixel myself :(