FMX.InertialMovement.TPointD.operator Inequality

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetLocation(const P: TPointD);
class operator Equal(const Lhs, Rhs: TPointD): Boolean;
class operator NotEqual(const Lhs, Rhs: TPointD): Boolean; overload;

Properties

Type Visibility Source Unit Parent
function public FMX.InertialMovement.pas FMX.InertialMovement TPointD

Description

Tests whether two TPointD points are not equal.

operator Inequality tests whether two TPointD points are not equal by comparing their X and Y properties (coordinates). It returns True if at least one of these coordinates is different. Otherwise, it returns False.

See Also