Table of Contents

Method GetNodes

Namespace
Pinwheel.Vista.Graph
Assembly
Pinwheel.Vista.Runtime.dll

GetNodes()

Gets a copy of the node list.

public List<INode> GetNodes()

Returns

List<INode>

A new list containing the graph's current nodes.

GetNodes<T>()

Gets nodes assignable to a specific CLR type.

public List<INode> GetNodes<T>()

Returns

List<INode>

A new list containing nodes assignable to T.

Type Parameters

T

GetNodes(Type)

Gets nodes assignable to a specific CLR type.

public List<INode> GetNodes(Type t)

Parameters

t Type

The node base type or interface to match.

Returns

List<INode>

A new list containing nodes assignable to t.