GoXam for WPF v3
FindElementsNear<T> Method
Northwoods.GoXam Namespace > DiagramPanel Class : FindElementsNear<T> Method
the type of element being searched for
a Point in model coordinates
the distance, in model coordinates
This is a predicate that is given an element of type T; if the predicate returns true, this method includes that element in its results.
The kinds of Layers to search in. For example, if you are looking for Nodes, using the value SearchLayers.Nodes, this will speed up the search by ignoring layers containing Links.
Find elements that are within a distance of a point.
Syntax

Parameters

p
a Point in model coordinates
dist
the distance, in model coordinates
navig
This is a function that is given an element at the given point and returns an element of type T to be considered by the predicate pred. Typically the function will find the ancestor Part or Node.
pred
This is a predicate that is given an element of type T; if the predicate returns true, this method includes that element in its results.
layers
The kinds of Layers to search in. For example, if you are looking for Nodes, using the value SearchLayers.Nodes, this will speed up the search by ignoring layers containing Links.

Type Parameters

T
the type of element being searched for

Return Value

an element of type T, or null if none is found
See Also

Reference

DiagramPanel Class
DiagramPanel Members