ImageEn, unit ieview

TIEView.DrawDebugInfo

TIEView.DrawDebugInfo


Declaration

property DrawDebugInfo: TIEDrawDebugInfo;


Description

Specifies whether debug information is displayed over the control.
Value Description
diNever Debug information is not shown
diDesignTime Debug information is shown only when designing (shows version and compatibility information)
diUnderDebugger Debug information is displayed under the IDE debugger (your users won't see it)
diAlways Debug information is always displayed (your users will see it)

TImageEnView showing Debug Information (top-left) and Version (Bottom-Right):


Note:
At design-time the debug information that is displayed is limited (version information only). If diDesignTime is specified compatiblity information is also displayed
Use: SetDrawTextProperties to customize the font for Version and Debug Information
This is the same information that is available via IEGlobalSettings().ImageEnVersion.Status, plus some information relevant to the control, such as selection, image information, etc.

Default: diNever


Example

// Enable debug display
ImageEnView1.DrawDebugInfo := diAlways;


See Also

DrawVersion
SetDrawTextProperties