PointPropertyX

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the x of <mPoint>
Associationscom.livecode.canvas
Summary

The x coordinate of a point value.

Parameters
NameTypeDescription
mPoint

An expression which evaluates to a point.

Example
variable tPoint
put point [50, 100] into tPoint

// Store the x-coordinate of the point in a variable
variable tX
put the x of tPoint into tX

// Move the point 10 units to the right
set the x of tPoint to (tX + 10)
Description

The x coordinate of mPoint.

Tagscanvas