VeriStand .NET API Reference

IWorkspace.GetSystemNodeChildren Method

Gets all child nodes, including channels, of the nodeName you specify. This method does not perform a recursive search. You can use the GetSystemNodeChannelList to perform a recursive search of all the channels under a specified node.

Namespace: NationalInstruments.VeriStand.ClientAPI
Assembly: NationalInstruments.VeriStand.ClientAPI (in NationalInstruments.VeriStand.ClientAPI.dll) Version: 2013.0.0.0 (2013.0.0.0)
Visual Basic (Declaration)
Function GetSystemNodeChildren ( _
	nodeName As String, _
	<OutAttribute> ByRef nodes As NodeInfo() _
) As Error
C#
Error GetSystemNodeChildren(
	string nodeName,
	out NodeInfo[] nodes
)
Visual C++
Error^ GetSystemNodeChildren(
	String^ nodeName, 
	[OutAttribute] array<NodeInfo^>^% nodes
)

Parameters

nodeName
Type: System.String
The name of the node for which you want to see all child nodes.
nodes
Type: NationalInstruments.VeriStand.ClientAPI.NodeInfo %
An array containing information about all the child nodes. You can index this array and use the members of the NodeInfo class to get specific information about each node, such as its name, path, GUID, and, if the node is a channel, information about the channel.

Return Value

Returns an Error object. If no error occurs, the Code property of the Error object is 0.

See Also

Log in to get a better experience