예제 #1
0
        public override EnumActionResult Execute()
        {
            string width  = _vm.variables.Get(m_params[1]);
            string height = _vm.variables.Get(m_params[3]);

            pos.X = Convert.ToDouble(width);
            pos.Y = Convert.ToDouble(height);

            UtilAutomation.WindowResize(_vm.host.TargetWindow, pos);
            return(EnumActionResult.OK);
        }