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