SoCallbackActionCallbackActionCB Delegate |
The SoCallbackActionCB typedef is defined within the class, since it needs to refer to the Response enumerated type.
Namespace: OIV.Inventor.ActionsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public delegate SoCallbackActionResponses CallbackActionCB(
SoCallbackAction action,
SoNode node
)
Public Delegate Function CallbackActionCB (
action As SoCallbackAction,
node As SoNode
) As SoCallbackActionResponses
public delegate SoCallbackActionResponses CallbackActionCB(
SoCallbackAction^ action,
SoNode^ node
)
type CallbackActionCB =
delegate of
action : SoCallbackAction *
node : SoNode -> SoCallbackActionResponses
Parameters
- action
- Type: OIV.Inventor.ActionsSoCallbackAction
- node
- Type: OIV.Inventor.NodesSoNode
Return Value
Type:
SoCallbackActionResponsesRemarks The first argument is the data pointer that the user supplied when the callback was registered. The second argument is the action, from which the state can be extracted. The third argument is the node that the callback is called from.
See Also