PropertyTypeTTGetPropertyVertices Method (Boolean) |
Try to find all
Vertex with a property value.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public override IEnumerable<Vertex> GetPropertyVertices(
bool polymorphic = false
)
Public Overrides Function GetPropertyVertices (
Optional polymorphic As Boolean = false
) As IEnumerable(Of Vertex)
public:
virtual IEnumerable<Vertex^>^ GetPropertyVertices(
bool polymorphic = false
) override
abstract GetPropertyVertices :
?polymorphic : bool
(* Defaults:
let _polymorphic = defaultArg polymorphic false
*)
-> IEnumerable<Vertex>
override GetPropertyVertices :
?polymorphic : bool
(* Defaults:
let _polymorphic = defaultArg polymorphic false
*)
-> IEnumerable<Vertex>
Parameters
- polymorphic (Optional)
- Type: SystemBoolean
If true, also look for property value matching vertices of property VertexType sub classes
Return Value
Type:
IEnumerableVertexEnumeration of matching vertices
See Also