API:FMX.Forms3D.TForm3D.Multisample

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Multisample default TMultisample.FourSamples;

C++

__property Multisample = {default=2};

Properties

Type Visibility Source Unit Parent
property published
FMX.Forms3D.pas
FMX.Forms3D.hpp
FMX.Forms3D TForm3D

Description

Specifies whether this form is rendered with antialiasing (multisampling).

FMX.Forms3D.TForm3D.Multisample inherits from FMX.Forms3D.TCustomForm3D.Multisample. All content below this line refers to FMX.Forms3D.TCustomForm3D.Multisample.

Specifies whether this form is rendered with antialiasing (multisampling).

The Multisample property specifies how the quality of the drawings of this form is affected upon rendering its contents on the screen.

The following values can be assigned to the Multisample property:

Value Meaning

None

The form is rendered without any antialiasing. This results in fast rendering speed but low graphical quality.

ms2Samples

The form is rendered with 2-times antialiasing. This results in better graphical quality.

ms4Samples

The form is rendered with 4-times antialiasing. This results in best graphical quality.

See Also