Properties · Methods · Demos · Examples
Declaration
TIEGlobalSettings = class(TComponent);
Description
Provides access to settings that are shared by all ImageEn components and functionality.
It can be accessed using the
IEGlobalSettings object or by adding a TIEGlobalSettings component to your main form (both methods can be used at the same time).
| Demos\Other\AllComps\AllComponents.dpr |
| Demos\Other\ImageEnViewToolbar\IEToolbar.dpr |
// Change the language to Italian
IEGlobalSettings().MsgLanguage := msItalian;
// Use PixelFormat as authoritative source of bit-depth
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IEBitmap.PixelFormat := ie8p;
// Display ImageEn version information
Label1.Caption := 'ImageEn Version: ' + IEGlobalSettings().ImageEnVersion.VersionStr;
Label2.Caption := 'Released on: ' + IEGlobalSettings().ImageEnVersion.DateStr;
// Use WIC to load JPEG images
IEGlobalSettings().JPEGEngine := ieenWIC;
// Register all available plug-in DLLs
IEGlobalSettings().RegisterPlugIns();
// For all loading, automatically rotate images to their correct orientation
IEGlobalSettings().IOParamDefaults.EnableAdjustOrientation := True;
// Use a navy selection color when selecting text in a PDF document
IEGlobalSettings().PdfViewerDefaults.SelectionColor := clNavy;
ImageEnView1.Update();
GeneralLanguageBitmap SettingsColor SettingsVisual Components (TImageEnView, TImageEnMView, etc)TImageEnView ToolbarsTImageEnView Popup MenusTImageEnMView Popup MenusOther Toolbars and Popup MenusToolbar and Popup EventsTImageEnView LayersImageEn DialogsTwain (Acquisition)Image EnginesFormat Plug-Ins (DLLs)Advanced SettingsSystem Status (Read-Only)