FMX.Filter.Effects.TFilterLineTransition.Normal

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Normal: TPointF read GetNormal write SetNormal;

C++

__property System::Types::TPointF Normal = {read=GetNormal, write=SetNormal};

Properties

Type Visibility Source Unit Parent
property public
FMX.Filter.Effects.pas
FMX.Filter.Effects.hpp
FMX.Filter.Effects TFilterLineTransition

Description

FMX.Filter.Effects.TFilterLineTransition.Normal inherits from FMX.Filter.Effects.TLineTransitionEffect.Normal. All content below this line refers to FMX.Filter.Effects.TLineTransitionEffect.Normal.

Specifies the line orientation.

Normal is a TPointF value.

If the X coordinate of Normal is 0, then the line is parallel to the oX axis. If the Y coordinate of Normal is 0, then the line is parallel to the oY axis.

Assign Normal a TPointF value with the X and Y coordinates or use the PointF function as follows:

  LineTransitionEffect1.Normal := PointF(0, 0);

If Normal is not explicitly set, it is considered equal to [150,150].

See Also