Example #1
0
        public void WndActivate()
        {
            var uia = new UIAuto();

            uia.SetCurrentWindow(_curWnd);
        }
Example #2
0
        public string GetModuleText()
        {
            var uia = new UIAuto();

            return(uia.GetModuleText());
        }
Example #3
0
        public void GetLinkToCurWindow()
        {
            var uia = new UIAuto();

            _curWnd = uia.GetCurrentWindow();
        }
Example #4
0
 public string GetSelectedText()
 {
     var uia = new UIAuto();
     return uia.GetSelectedText();
 }