Declaration
property AntiAlias: Boolean;
Description
Improves the quality of layer drawing by using anti-aliasing.
Note:
◼Does not apply to
TIEImageLayer. For display quality of
TIEImageLayer, see
UseResampleFilter◼Anti-Alias is not applied if
LayersFastDrawing is active
◼Anti-aliasing can give layers an artefact (pale) border. This is reduced by including loEdgeSmoothing in
LayerOptions (Enabled by default)
Default: True
// Disable anti-aliasing
ImageEnView1.CurrentLayer.AntiAlias := False;
ImageEnView1.Update();