FMX.Effects.TEffectStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TEffectStyle = (AfterPaint, DisablePaint, DisablePaintToBitmap);

C++

enum class DECLSPEC_DENUM TEffectStyle : unsigned char { AfterPaint, DisablePaint, DisablePaintToBitmap };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Effects.pas
FMX.Effects.hpp
FMX.Effects FMX.Effects

Description

Select an effect type to be applied during the different rendering phases. By default, the style effect occurs before rendering control.

TEffectStyle provides these specific effect styles:

  • AfterPaint: this effect type renders results after control rendering. For example, TInnerGlowEffect.
  • DisablePaint: this effect type renders results instead of control rendering. For example, TBlurEffect.
  • DisablePaintToBitMap: disables rendering effect result into effect cach buffer.


See Also