Exemplo n.º 1
5
 public static string GetText(Point point) {
     var helperAutomation = new HelperAutomation();
     IntPtr windowFromPoint = helperAutomation.WindowFromPoint(point);
     return GetText(windowFromPoint);
 }
Exemplo n.º 2
0
        public static void SetText(Point point, string textToSet)
        {
            var    helperAutomation = new HelperAutomation();
            IntPtr windowFromPoint  = helperAutomation.WindowFromPoint(point);

            SetText(windowFromPoint, textToSet);
        }
Exemplo n.º 3
0
        public static string GetText(Point point)
        {
            var    helperAutomation = new HelperAutomation();
            IntPtr windowFromPoint  = helperAutomation.WindowFromPoint(point);

            return(GetText(windowFromPoint));
        }
Exemplo n.º 4
-2
 public static void SetText(Point point, string textToSet) {
     var helperAutomation = new HelperAutomation();
     IntPtr windowFromPoint = helperAutomation.WindowFromPoint(point);
     SetText(windowFromPoint, textToSet);
 }