API:FMX.Effects.TBevelEffect.GetRect

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetRect(const ARect: TRectF): TRectF; override;

C++

virtual System::Types::TRectF __fastcall GetRect(const System::Types::TRectF &ARect);

Properties

Type Visibility Source Unit Parent
function public
FMX.Effects.pas
FMX.Effects.hpp
FMX.Effects TBevelEffect

Description

Returns the rectangle that defines the drawing edge of the bitmap onto which the effect is drawn.

FMX.Effects.TBevelEffect.GetRect inherits from FMX.Effects.TEffect.GetRect. All content below this line refers to FMX.Effects.TEffect.GetRect.

Returns the rectangle that defines the drawing edge of the bitmap onto which the effect is drawn.

By default, GetRect returns the rectangle received through the ARect parameter. Subclasses of TEffect compute specific rectangles, depending on their properties. GetRect is called by ApplyEffect; you do not need to call it explicitly.

See Also