'Declaration <ExtensionAttribute()> Public Shared Function FindParent(Of T)( _ ByVal element As ILayoutElement _ ) As T
'Usage Dim element As ILayoutElement Dim value As T value = Extensions.FindParent(Of T)(element)
[Extension()] public static T FindParent<T>( ILayoutElement element )
Parameters
- element
- The ILayoutElement whose parent of type T will returned.
Type Parameters
- T
- The type of the parent.
Return Value
The returned parent.