FMX.Controls.TControl.ShouldTestMouseHits

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ShouldTestMouseHits: Boolean; virtual;

C++

virtual bool __fastcall ShouldTestMouseHits();

Properties

Type Visibility Source Unit Parent
function public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Indicates whether a control should be ignored in ObjectAtPoint.

False if the control should be ignored in ObjectAtPoint. ShouldTestMouseHits normally returns the same value as the value of Visible property of the control. TFrame overrides this method to allow itself to be painted in design time regardless of the value of its Visible property.

See Also