IDLitVisualization::Select
Syntax | Arguments | Keywords | Version History
The IDLitVisualization::Select procedure method handles notification of mechanisms that key off the current selection (such as the visualization browser) when this visualization has been selected.
Syntax
Obj->[IDLitVisualization::]Select[, Mode] [, /ADDITIVE | /SELECT | /TOGGLE | /UNSELECT] [, /NO_NOTIFY]
Arguments
Mode
A scalar that indicates the selection mode. Valid values include:
- 0 - Unselect (deselect this visualization).
- 1 - Select (set this visualization as the current selection). This mode is the default.
- 2 - Toggle (toggle the selection of this visualization). Use the CRTL key to toggle.
- 3 - Additive (add this visualization to the current selection list). Use the SHIFT key to add.
Keywords
ADDITIVE
Set this keyword to indicate that the selection mode is additive. This is equivalent to setting Mode to 3.
NO_NOTIFY
Set this keyword to indicate that this visualization's parent should not be notified of this selection. By default, the parent is notified.
SELECT
Set this keyword to indicate that the selection mode is select. This is equivalent to setting Mode to 1.
TOGGLE
Set this keyword to indicate that the selection mode is toggle. This is equivalent to setting Mode to 2.
UNSELECT
Set this keyword to indicate that the selection mode is unselect. This is equivalent to setting Mode to 0.
Version History