MainWindowGetRecursiveChildrenT Method  | 
  Gets the recursive children of a parent element that are of type T. 
 
    Namespace: 
   butterflow_ui
    Assembly:
   butterflow-ui (in butterflow-ui.exe) Version: 1.0.0.0 (1.0.0.0)
Syntaxprivate IEnumerable<T> GetRecursiveChildren<T>(
	Object parent
)
where T : DependencyObject
Private Function GetRecursiveChildren(Of T As DependencyObject) ( 
	parent As Object
) As IEnumerable(Of T)
private:
generic<typename T>
where T : DependencyObject
IEnumerable<T>^ GetRecursiveChildren(
	Object^ parent
)
private member GetRecursiveChildren : 
        parent : Object -> IEnumerable<'T>  when 'T : DependencyObject
Parameters
- parent
 - Type: SystemObject
 The parent element.  
Type Parameters
- T
 -  Generic type parameter. 
 
Return Value
Type: 
IEnumerableT
            An enumerator that allows foreach to be used to process the recursive childrens in this
            collection.
            
See Also