Example #1
0
 public UIA3FrameworkAutomationElement(UIA3Automation automation, UIA.IUIAutomationElement nativeElement) : base(automation)
 {
     Automation    = automation;
     NativeElement = nativeElement;
 }
 internal UIA3TextRange(UIA3Automation automation, UIA.IUIAutomationTextRange nativeRange)
 {
     Automation  = automation;
     NativeRange = nativeRange;
 }
 public UIA3TextRange3(UIA3Automation automation, UIA.IUIAutomationTextRange3 nativeRange)
     : base(automation, nativeRange)
 {
     NativeRange3 = nativeRange;
 }
Example #4
0
 /// <summary>
 /// Creates a UIA3 tree walker factory.
 /// </summary>
 public UIA3TreeWalkerFactory(UIA3Automation automation)
 {
     _automation = automation;
 }
Example #5
0
 /// <summary>
 /// Creates a UIA3 tree walker.
 /// </summary>
 public UIA3TreeWalker(UIA3Automation automation, UIA.IUIAutomationTreeWalker nativeTreeWalker)
 {
     Automation       = automation;
     NativeTreeWalker = nativeTreeWalker;
 }