PathPropertyInstructions

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the instructions of <mPath>
Associationscom.livecode.canvas
Summary

The instructions of a path.

Parameters
NameTypeDescription
mPath

An expression which evaluates to a path.

Example
// 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
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

Tagscanvas