AuScGen.CommonUtilityPlugin.AutoITExtension.ControlMove C# (CSharp) Method

ControlMove() public method

public ControlMove ( int x, int y, int width = -1, int height = -1, string control = "" ) : int
x int
y int
width int
height int
control string
return int
        public int ControlMove(int x, int y, int width = -1, int height = -1, string control = "")
        {
            return AutoItX.ControlMove(thiswindowHandle, ControlGetHandle(control), x, y, width, height);
        }

Same methods

AutoITExtension::ControlMove ( string title, string text, string control, int x, int y, int width = -1, int height = -1 ) : int