SoSelectionAddFinishCallback Method (SoSelectionClassCB) |
Note: This API is now obsolete.
Use FinishSelection event instead
Adds finish delegate.
Namespace: OIV.Inventor.NodesAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.36.0 (9.9.36.0)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("Use FinishSelection event instead")]
public void AddFinishCallback(
SoSelectionClassCB cb
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<ObsoleteAttribute("Use FinishSelection event instead")>
Public Sub AddFinishCallback (
cb As SoSelectionClassCB
)
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"Use FinishSelection event instead")]
void AddFinishCallback(
SoSelectionClassCB^ cb
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("Use FinishSelection event instead")>]
member AddFinishCallback :
cb : SoSelectionClassCB -> unit
Parameters
- cb
- Type: OIV.Inventor.NodesSoSelectionClassCB
Remarks
The finish delegates are invoked when the user has finished interactively
changing the selection list (by picking objects). This was preceded by an
invocation of each start delegate, and invocations of the select and/or deselect
delegates. The finish delegates are not called when the selection list is
changed programmatically.
See Also