ImageEn, unit iesettings

TIEGlobalSettings.TempPath

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.


Example

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;