| SoPathGetNode Method (Type, Int32) | 
Returns the first node and its index, from the head of the given type in the chain. 
 
Namespace: OIV.InventorAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2023.1.3.0 (2023.1.3)
Syntaxpublic SoNode GetNode(
	Type type,
	out int i
)
Public Function GetNode ( 
	type As Type,
	<OutAttribute> ByRef i As Integer
) As SoNode
public:
SoNode^ GetNode(
	Type^ type, 
	[OutAttribute] int% i
)
member GetNode : 
        type : Type * 
        i : int byref -> SoNode 
Parameters
- type
 - Type: SystemType
 - i
 - Type: SystemInt32
 
Return Value
Type: 
SoNode
RemarksNULL is returned and the index is set to -1 if no node of the given type is found. 
See Also