FMX.Controls.Presentation.TObjectAtPointInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TObjectAtPointInfo = record
    Point: TPointF;
    Control: IControl;
  end;

C++

struct DECLSPEC_DRECORD TObjectAtPointInfo
{
public:
    System::Types::TPointF Point;
    Fmx::Types::_di_IControl Control;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Controls.Presentation.pas
FMX.Controls.Presentation.hpp
FMX.Controls.Presentation FMX.Controls.Presentation

Description

Record that TPresentedControl.ObjectAtPoint uses to send a message to request to the presentation layer the control that contains the specified point.

See Also