Vcl.Graphics.TMetafile.Enhanced

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Enhanced: Boolean read FEnhanced write FEnhanced default True;

C++

__property bool Enhanced = {read=FEnhanced, write=FEnhanced, default=1};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Graphics.pas
Vcl.Graphics.hpp
Vcl.Graphics 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.

By default, the Enhanced property is True.

See Also