Skip to main content

PathPropertyInstructions

Type​

operator

Summary​

The instructions of a path.

Syntax​

the instructions of <mPath>

Description​

A string containing the series of instructions and point arguments used to construct mPath.

note

The format of the path instructions is the same as that used for SVG path data as defined here - http://www.w3.org/TR/SVG/paths.html#PathData

Parameters​

NameTypeDescription

mPath

An expression which evaluates to a path.

Examples​

// Create a rounded rectangle path
variable tPath as Path
put rounded rectangle path of rectangle [10,10,210,60] with radius 15 into tPath

// Get the instructions of the path
variable tPathData as String
put the instructions of tPath into tPathData
Thank you for your feedback!

Was this page helpful?