Example #1
0
        public static string GetCheckedListboxName(string WindowName)
        {
            ControlOp co = new ControlOp(ControlType.ListItem);

            return(co.getAllControlName(co, WindowName));
        }
Example #2
0
        public static string GetEditName(string wName)
        {
            ControlOp co = new ControlOp(ControlType.Edit);

            return(co.getAllControlName(co, wName));
        }
Example #3
0
        public static string GetButtonName(string WindowName)
        {
            ControlOp co = new ControlOp(ControlType.Button);

            return(co.getAllControlName(co, WindowName));
        }
Example #4
0
        public static string GetCheckboxName(string WindowName)
        {
            ControlOp co = new ControlOp(ControlType.CheckBox);

            return(co.getAllControlName(co, WindowName));
        }
Example #5
0
        public static string GetPaneName(string wName)
        {
            ControlOp co = new ControlOp(ControlType.Pane);

            return(co.getAllControlName(co, wName));
        }