GraphSelect Method (PropertyType, FuncIComparable, IComparable, Boolean, IComparable) |
Enumerates all elements satisfying the given condition for the given property and value
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IElement> Select(
PropertyType property,
Func<IComparable, IComparable, bool> condition,
IComparable value
)
Public Function Select (
property As PropertyType,
condition As Func(Of IComparable, IComparable, Boolean),
value As IComparable
) As IEnumerable(Of IElement)
public:
IEnumerable<IElement^>^ Select(
PropertyType^ property,
Func<IComparable^, IComparable^, bool>^ condition,
IComparable^ value
)
member Select :
property : PropertyType *
condition : Func<IComparable, IComparable, bool> *
value : IComparable -> IEnumerable<IElement>
Parameters
- property
- Type: VelocityGraphPropertyType
Property we are looking for - condition
- Type: SystemFuncIComparable, IComparable, Boolean
A filter function, applied with in graph value as 1st parameter and value as second parameter. - value
- Type: SystemIComparable
Filtering value
Return Value
Type:
IEnumerableIElementEnum of IElement
See Also