Click or drag to resize
SoExtSelectionOnPreFilter Event

The ExtSelection will traverse each node of scene graph and test intersection against each nodes.

Namespace: OIV.Inventor.Nodes
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public event EventHandler<SoExtSelectionPreFilterEventArg> OnPreFilter

Value

Type: SystemEventHandlerSoExtSelectionPreFilterEventArg
Remarks

The event is called before doing intersection test and can be used to skip a particular node to avoid doing costly computation. To skip a node, call the method OIV.Inventor.Nodes.SoExtSelection.PreFilterEventArg.SkipNode() inside your callback.

See Also