IDLitVisualization::Move

Syntax | Arguments | Keywords | Version History

The IDLitVisualization::Move procedure method moves an object from one position in the visualization container to a new position. Use the IDLitVisualization::Get method to return the objects within the visualization.

The positions of the objects within a container controls how they are rendered. The object whose location has the lowest index value is rendered first. If several objects are located at the same point in three-dimensional space, the object rendered first will occlude objects rendered later.

Note
This method overrides the IDL_Container::Move method, which IDLitVisualization inherits since IDL_Container is a superclass of IDLgrModel. This specialized implementation of the Move method ensures visualizations are stored in the correct order based on type when they are moved. Those items that must appear on top of other objects are stored as the last items in the list of objects contained by this visualization.

Syntax

Obj->[IDLitVisualization::]Move, Source, Destination

Arguments

Source

The zero-based index of the current location of the object to be moved.

Destination

The zero-based index of the new location where the object will reside after being moved.

Keywords

None

Version History

6.1

Introduced