I have a MView with thumbnails, loaded from some image container (IEBitmaps). Inside MView, tHere are properties such as ImageOriginalHeight and ImageOriginalWidth.
Is there any property that contains ImageOriginal IEBitmap? I need to connect somehow thumbnail image with my original image (IEBitmap). Any UserData inside MView?
If you are loading with StoreType=ietThumb then TImageEnMView does not load the full image. Just use the image filename to load from disk (it is faster this way, rather than using StoreType=ietNormal and assigning the image).
Images are already loaded in some kind of container. MView is used only to display images in a strip (thumbnails - as there is no setexternalbitmap method inside MView)) and user selects desired image. I need some kind of reference to original IEBitmap inside container.
Images in MView are loaded using ietFastThumb.
However, I've noticed that there is ImageUserPointer in MView, so I can use it to associate original image IEBitmap with desired thumbnail.