Represents the method that will define the action behavior when traversing
a node type.
Namespace: OIV.Inventor.ActionsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2023.1.3.0 (2023.1.3)
Syntax public delegate void PerformAction(
SoAction action,
SoNode node
)
Public Delegate Sub PerformAction (
action As SoAction,
node As SoNode
)
public delegate void PerformAction(
SoAction^ action,
SoNode^ node
)
type PerformAction =
delegate of
action : SoAction *
node : SoNode -> unit
Parameters
- action
- Type: OIV.Inventor.ActionsSoAction
The source action traversing the scene graph. - node
- Type: OIV.Inventor.NodesSoNode
The current node traversed by the action.
Remarks
When you create a PerformAction delegate, you identify the method that will
handle the node type. To associate the node type with your method, call
AddMethod
with an instance of the delegate and the associated node type.
See Also