SoCallbackAction.CallbackActionCB 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)
Syntaxpublic delegate SoCallbackAction. Responses CallbackActionCB(
SoCallbackAction action,
SoNode node
)
Public Delegate Function CallbackActionCB (
action As SoCallbackAction,
node As SoNode
) As SoCallbackAction.Responses
public delegate SoCallbackAction. Responses CallbackActionCB(
SoCallbackAction^ action,
SoNode^ node
)
type CallbackActionCB =
delegate of
action : SoCallbackAction *
node : SoNode -> SoCallbackAction.Responses
Parameters
- action
- Type: OIV.Inventor.Actions.SoCallbackAction
- node
- Type: OIV.Inventor.Nodes.SoNode
Return Value
Type:
SoCallbackAction.Responses
RemarksThe 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