Search
Box.MoveTo Method
See Also
 



Moves the box to the specified location.

 Syntax

VB6  Copy Code

Public Sub MoveTo( _
    ByVal x As Long, _
    ByVal y As Long _
)

C++  Copy Code

public:
void MoveTo (
    int x,
    int y
)

 Parameters

x
The x coordinate of the new position of the box.
y
The y coordinate of the new position of the box.

 Remarks

Moves the box without changing its size.

 See Also