TIEMDiskCache.ExcludedTypes
Declaration
property ExcludedTypes: string;
Description
Exclude files from being cached. Set to '' to cache all images.
Note: Changing this value does not affect existing items in your cache. You may want to clear the content using
CleanUp.
Default: '*.bmp'
// Cache all images
ImageEnMView1.DiskCache.ExcludedTypes := '';
// Do not cache Dicom or BMP
ImageEnMView1.DiskCache.ExcludedTypes := '*.dcm;*.dicom;*.bmp';