System.Types.TPoint.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(P : TPoint); overload;
constructor Create(const X, Y : Integer); overload;

C++

TPoint() _ALWAYS_INLINE
TPoint(int _x, int _y) _ALWAYS_INLINE

Properties

Type Visibility Source Unit Parent
constructor public
System.Types.pas
SystemTypes.h
System.Types TPoint

Description

Creates a TPoint object.

Use Create to construct and initialize a new TPoint object. X and Y specify the horizontal and vertical Integer coordinates of the point, respectively.

See Also