コード例 #1
0
 public static AutomationElementCollection FindAll(this AutomationElement element, TreeScope treeScope, Condition condition)
 {
     return(element.FindAll(treeScope, condition));
 }
コード例 #2
0
 public static AutomationElementCollection FindAllChildren(this AutomationElement element, Condition condition)
 {
     return(element.FindAll(TreeScope.Children, condition));
 }