FindDescendantOfType<T>(Visual, Boolean, Predicate<T>) Method
Finds first descendant of given type that matches given predicate.
Definition
Namespace: Avalonia.VisualTree
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public static T FindDescendantOfType<T>(
this Visual? visual,
bool includeSelf,
Predicate<T>? predicate
)
where T : class
<ExtensionAttribute>
Public Shared Function FindDescendantOfType(Of T As Class) (
visual As Visual,
includeSelf As Boolean,
predicate As Predicate(Of T)
) As T
[<ExtensionAttribute>]
static member FindDescendantOfType :
visual : Visual *
includeSelf : bool *
predicate : Predicate<'T> -> 'T when 'T : not struct
Parameters
- Visual
- The visual.
- Boolean
- If given visual should be included in search.
- Predicate(T)
- The predicate that the descendant must match.
Type Parameters
- Descendant type.
Return Value
T
First descendant of given type that matches given predicate.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Visual. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also
Reference
VisualExtensions Class
FindDescendantOfType Overload
Avalonia.VisualTree Namespace