Click or drag to resize
ActionMethodListAddMethod Method
Add an instance of PerformAction delegate associated to the node type.

Namespace: OIV.Inventor.Actions
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public void AddMethod(
	Type nodeType,
	PerformAction actionToPerform
)

Parameters

nodeType
Type: SystemType
The node type concerned.
actionToPerform
Type: OIV.Inventor.ActionsPerformAction
An instance of PerformAction delegate to call when encountering the nodeType.
Remarks
The delegate is called whenever the action traverses a node which type is assignable to the nodeType. The method will be called on derived types unless an instance PerformAction delegate is specified for the derived type.
See Also