コード例 #1
0
        public static string GetCheckedListboxName(string WindowName)
        {
            ControlOp co = new ControlOp(ControlType.ListItem);

            return(co.getAllControlName(co, WindowName));
        }
コード例 #2
0
ファイル: EditOp.cs プロジェクト: tamutamu/AutoTestCore
        public static string GetEditName(string wName)
        {
            ControlOp co = new ControlOp(ControlType.Edit);

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

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

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

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