![]() |
![]() |
SubPath.Move
Sub Move([DeltaX As Double], [DeltaY As Double])
Member of SubPath
The Move method changes the position of a curves subpath by moving it a specified offset.
The following code example moves each subpath of the selected curve randomly:
Sub Test() Dim spath As SubPath For Each spath In ActiveShape.Curve.Subpaths spath.Move Rnd() * 2 - 1, Rnd() * 2 - 1 Next spath End Sub
![]() |
![]() |
![]() |
Copyright 2007 Corel Corporation. All rights reserved.