All Cadcorp SIS API Methods

MoveList Method

Description

Moves, rotates, and scales editable Items in a Named List

Syntax

Visual Basic
Public Function MoveList( _
   ByVal list As String, _
   ByVal x As Double, _
   ByVal y As Double, _
   ByVal z As Double, _
   ByVal a As Double, _
   ByVal s As Double _
) As Integer

Parameters

list
The Named List containing the Items to be moved, rotated and scaled.
 
x
The distances to move in the x direction. Note that these values are relative, i.e. the items will be moved by these values from their current positions.
 
y
The distances to move in the y direction. Note that these values are relative, i.e. the items will be moved by these values from their current positions.
 
z
The distances to move in the z direction. Note that these values are relative, i.e. the items will be moved by these values from their current positions.
 
a
The rotation, in radians, to apply.
 
s
The scaling to apply.

Remarks

The distances x, y, z will be scaled and rotated by s and a respectively, before being applied to the items in the Named List.

Available: GEO D OD OM SISpy

Group:

Example

sis.MoveList ("SeedPoints", 10, 10, 0, 0.79, 1)