Moves and optionally resizes the windows in a single function.
[Visual Basic 6.0] Sub Move(
ByVal Left As Long, _
ByVal Top As Long, _
[ByVal Width As Long], _
[ByVal Height As Long] _
)
[Visual Basic .NET] Public Sub Move ( _ ByVal Left As Integer, _ ByVal Top As Integer, _ [ByVal Width As Integer], _ [ByVal Height As Integer] _ )
[C#] public void Move ( int Left, int Top, int Width, int Height );
Optional Values
You can use the Move method to set the Left, Top, Width, and Height properties all at the same time.