VertexTypeGetVertices Method (Boolean) |
Enumerates all vertices for the given type
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<Vertex> GetVertices(
bool polymorphic = false
)
Public Function GetVertices (
Optional polymorphic As Boolean = false
) As IEnumerable(Of Vertex)
public:
IEnumerable<Vertex^>^ GetVertices(
bool polymorphic = false
)
member GetVertices :
?polymorphic : bool
(* Defaults:
let _polymorphic = defaultArg polymorphic false
*)
-> IEnumerable<Vertex>
Parameters
- polymorphic (Optional)
- Type: SystemBoolean
If true, also include all vertices of sub types of this VertexType
Return Value
Type:
IEnumerableVertexEnumeration of vertices
See Also