System.Types.TPoint.SetLocation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetLocation(const X, Y : Integer); overload;
procedure SetLocation(const P : TPoint); overload;

C++

void SetLocation(int nX, int nY) _ALWAYS_INLINE {
void SetLocation(const TPoint& p) _ALWAYS_INLINE {

Properties

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

Description

Sets the location of a TPoint object.

Use SetLocation to set the location of a point at specified coordinates or at a specified TPoint location.

See Also