| PropertyTypeGetPropertyVertices Method  | 
 
            Try to find all 
Vertex with a given property value.
            
 
    Namespace: 
   VelocityGraph
    Assembly:
   VelocityGraph (in VelocityGraph.dll) Version: 8.2.1.0 (8.2.1)
 Syntax
Syntaxpublic abstract IEnumerable<Vertex> GetPropertyVertices(
	IComparable value,
	bool polymorphic = false
)
Public MustOverride Function GetPropertyVertices ( 
	value As IComparable,
	Optional polymorphic As Boolean = false
) As IEnumerable(Of Vertex)
public:
virtual IEnumerable<Vertex^>^ GetPropertyVertices(
	IComparable^ value, 
	bool polymorphic = false
) abstract
abstract GetPropertyVertices : 
        value : IComparable * 
        ?polymorphic : bool 
(* Defaults:
        let _polymorphic = defaultArg polymorphic false
*)
-> IEnumerable<Vertex> 
Parameters
- value
- Type: SystemIComparable
 The property value to look for
- 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
See Also