ImageEn, unit iesettings

TIEImageEnGlobalSettings.ImageEnVersion

TIEImageEnGlobalSettings.ImageEnVersion


Declaration

property ImageEnVersion: TIEVersion;


Description

Returns version information for ImageEn.
ImageEnVersion.IELibVersionStr returns the version of IELib.dll or IEVision.dll that is compatible with this release.

Note: There is a define in ie.inc for the current delphi version: {$define IEVER_****} where **** is the same value as IEGlobalSettings().ImageEnVersion.Version;


Examples

Label1.Caption := 'ImageEn Version: ' + IEGlobalSettings().ImageEnVersion.VersionStr;
Label2.Caption := 'Released on: ' + IEGlobalSettings().ImageEnVersion.DateStr;

if not IEVisionAvailable() then
  ShowMessage( 'This application requires the ievision.dll plug-in, v' + IEGlobalSettings().ImageEnVersion.IELibVersionStr +'. Please download it from www.imageen.com' );