Skip to main content

PathOperationAddPath

Type

statement

Summary

Extend a path by adding another path.

Syntax

add <mSource> to <mDest>

Description

Adds the path defined by mSource to mDest.

Parameters

NameTypeDescription

mSource

An expression which evaluates to a path.

mDest

An expression which evaluates to a path.

Examples

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

// Add another rectangle subpath to tPath
add rectangle path of rectangle [110,10,310,60] to tPath
Thank you for your feedback!

Was this page helpful?