Search
Table.MoveTo Method
See Also
 



Moves the table 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 table.
y
The y coordinate of the new position of the table.

 Remarks

Moves the table without changing its extents.

 See Also