FMX.Forms3D.TCustomForm3D.Multisample

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Multisample: TMultisample read FMultisample write SetMultisample default TMultisample.FourSamples;

C++

__property Fmx::Types3d::TMultisample Multisample = {read=FMultisample, write=SetMultisample, default=2};

Properties

Type Visibility Source Unit Parent
property public
FMX.Forms3D.pas
FMX.Forms3D.hpp
FMX.Forms3D TCustomForm3D

Description

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