TIEImageEnGlobalSettings.DefTempPath
Declaration
property DefTempPath: string;
Description
Specifies the directory where ImageEn stores temporary files. If specified as '' the default system temporary directory is used.
Default: '' (use system temp directory)
Applications should set DefTempPath inside 'initialization' block, before the ImageEn components are created.
For
TImageEnMView component, you can change DefTempPath at any time, just call after the
Clear method.
Example
Initialization
IEGlobalSettings().DefTempPath := 'G:\temp';
...or...
// Set ImageEnMView1 to use disk G: and ImageEnMView2 to disk H:
IEGlobalSettings().DefTempPath := 'G:\';
ImageEnMView1.Clear;
IEGlobalSettings().DefTempPath := 'H:\';
ImageEnMView2.Clear;