public static string GetCheckedListboxName(string WindowName) { ControlOp co = new ControlOp(ControlType.ListItem); return(co.getAllControlName(co, WindowName)); }
public static string GetEditName(string wName) { ControlOp co = new ControlOp(ControlType.Edit); return(co.getAllControlName(co, wName)); }
public static string GetButtonName(string WindowName) { ControlOp co = new ControlOp(ControlType.Button); return(co.getAllControlName(co, WindowName)); }
public static string GetCheckboxName(string WindowName) { ControlOp co = new ControlOp(ControlType.CheckBox); return(co.getAllControlName(co, WindowName)); }
public static string GetPaneName(string wName) { ControlOp co = new ControlOp(ControlType.Pane); return(co.getAllControlName(co, wName)); }