Ejemplo n.º 1
0
 public UIA2TextRange(UIA2Automation automation, UIA.Text.TextPatternRange nativeRange)
 {
     Automation  = automation;
     NativeRange = nativeRange;
 }
Ejemplo n.º 2
0
 public static UIA2TextRange NativeToManaged(UIA2Automation automation, UIA.Text.TextPatternRange nativeElement)
 {
     return(nativeElement == null ? null : new UIA2TextRange(automation, nativeElement));
 }
Ejemplo n.º 3
0
 public TestTextRange(TestAutomation automation, UIA.Text.TextPatternRange nativeRange)
 {
     Automation  = automation;
     NativeRange = nativeRange;
 }