Graphics.TMetafile.Enhanced
From RAD Studio VCL Reference
Delphi Information
From Graphics.pas
property Enhanced: Boolean read FEnhanced write FEnhanced;
Unit: Graphics
Type: property
Visibility: public
Member Of: TMetafile
C++ Information
From Graphics.hpp
__property bool Enhanced = {read=FEnhanced,write=FEnhanced};
Unit: Graphics
Type: property
Visibility: public
Member Of: TMetafile
Description
Determines how the metafile will be stored on disk.
Use Enhanced to determine how the metafile is stored on disk. If Enhanced is true, the metafile is stored as an .EMF (Win32 Enhanced Metafile). If Enhanced is false, the metafile is stored as a .WMF (Windows 3.1 Metafile, with Aldus header).
The in-memory format is always EMF. WMF has very limited capabilities; storing as WMF will lose information that would be retained by EMF. This property is set to match the metafile type when loaded from a stream or file. If loaded as WMF, then save as WMF.