Ejemplo n.º 1
0
        public static string GetCheckedListboxName(string WindowName)
        {
            ControlOp co = new ControlOp(ControlType.ListItem);

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

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

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

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

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