ImageEn, unit iemview

TImageEnMView.DeproritizeLargeImageMethod

TImageEnMView.DeproritizeLargeImageMethod


Declaration

property DeproritizeLargeImageMethod: TIEMLargeImageMethod;


Description

Specifies the method used to load large images so that they do not slow the overall loading.
Images that are larger than the value specified (in Bytes) for DeproritizeLargeImages will be loaded either delayed or as thumbnails, depending on DeproritizeLargeImageMethod.

Default: ieliDelayed


Example

// Delay loading of images larger than 10MB
ImageEnMView1.DeproritizeLargeImages := 10*1024*1024;
ImageEnMView1.DeproritizeLargeImageMethod := ieliDelayed;

// Force thumbnails for images larger than 2MB
ImageEnMView1.DeproritizeLargeImages := 2*1024*1024;
ImageEnMView1.DeproritizeLargeImageMethod := ieliThumbnail;

// Disable prioritized loading
ImageEnMView1.DeproritizeLargeImages := 0;