GetAutomationElementsWithFindAll() private method

private GetAutomationElementsWithFindAll ( IUiElement element, ControlSearcherData data, UIANET::System.Windows.Automation conditions, bool caseSensitiveParam, bool onlyOneResult, bool onlyTopLevel, bool viaWildcardOrRegex ) : List
element IUiElement
data ControlSearcherData
conditions UIANET::System.Windows.Automation
caseSensitiveParam bool
onlyOneResult bool
onlyTopLevel bool
viaWildcardOrRegex bool
return List
Example #1
0
 public static List<IUiElement> GetResultList_ViaWildcards_Legacy(IUiElement element, Condition condition, ControlSearcherData data)
 {
     var cmdletDerived = new GetControlCollectionCmdletBase();
     
     List<IUiElement> resultList =
         cmdletDerived.GetAutomationElementsWithFindAll(
             element,
             data,
             condition,
             false,
             false,
             false,
             true);
     
     return resultList;
 }