ImageEn, unit iemview

TIEMDiskCache.MinWidth

TIEMDiskCache.MinWidth


Declaration

property MinWidth: Integer;


Description

Specify the minimum width of images that are saved to the cache. Any images smaller than MinWidth x MinHeight will be excluded.

Note: Changing this value does not affect existing items in your cache. You may want to clear the content using CleanUp.

Default: 800


Example

// Only cache images larger than 2000 x 2000 and JPEG files
ImageEnMView1.DiskCache.MinWidth  := 2000;
ImageEnMView1.DiskCache.MinHeight := 2000;