JCL Help:PointMove

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Moves a point.


Pascal

 procedure PointMove(var P: TPoint; const DeltaX: Integer; const DeltaY: Integer);


Parameters

Parameters Description
var P: TPoint The point to move.
const DeltaX: Integer The amount by which to offset the X member of the TPoint.
const DeltaY: Integer The amount by which to offset the Y member of the TPoint.


Return Value

The moved point (P.X = P.X + DeltaX, P.Y = P.Y + DeltaY).


Description

PointMove moves the specified point by the supplied offsets.


About

Unit

JclGraphUtils


Donator

Marcel van Brakel


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page