Skip to main content

PointPropertyX

Type

operator

Summary

The x coordinate of a point value.

Syntax

the x of <mPoint>

Description

The x coordinate of mPoint.

Parameters

NameTypeDescription

mPoint

An expression which evaluates to a point.

Examples

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)
Thank you for your feedback!

Was this page helpful?