FMX.Filter.Effects.TFilterMagnifyTransition.Center

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Center: TPointF read GetCenter write SetCenter;

C++

__property System::Types::TPointF Center = {read=GetCenter, write=SetCenter};

Properties

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

Description

FMX.Filter.Effects.TFilterMagnifyTransition.Center inherits from FMX.Filter.Effects.TMagnifyTransitionEffect.Center. All content below this line refers to FMX.Filter.Effects.TMagnifyTransitionEffect.Center.

Specifies the center of the magnified area.

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

  MagnifyTransitionEffect1.Center := PointF(0, 0);

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

See Also