schHiMove
schHiMove(
[ ?useSelSet t_useSelSet ]
)
=> t
Description
Moves objects to a different location. You can move objects between different schematic and symbol cellviews. Usable when editing schematics or symbols. Partially selected objects cannot be moved to a different cellview. Does not support change in orientation for partially selected objects.
The argument t_useSelSet determines whether the function operates on the selected set. If t_useSelSet is useSelSet and the selected set contains at least one object, you are prompted to click a reference point. If the selected set is empty or t_useSelSet is noSelSet, you are prompted to point at an object to move; that coordinate is also the reference point. Also, if t_useSelSet is noSelSet, the function is nonmodal.
When the point is specified, all connectivity is broken between the selected objects and the objects they are connected to. New connectivity is computed when the objects are placed at their destination.
Arguments
|
Specifies whether to move the selected set or an object you choose with the mouse; must be enclosed in quotation marks. |
Value Returned
Examples
Prompts you to select objects to move, ignoring the current selected set.
schHiMove( "noSelSet" )
Return to top