Moves dx units horizontally and dy units vertically.
[Visual Basic 6.0] Sub Move(
ByVal dx As Double, _
ByVal dy As Double _
)
[Visual Basic .NET] Public Sub Move ( _ ByVal dx As Double, _ ByVal dy As Double _ )
[C#] public void Move ( double dx, double dy );
[Java] public void move ( double dx, double dy ) throws IOException, AutomationException
[C++]
HRESULT Move(
double dx,
double dy
);
Parameters
dx
dx is a parameter of type double
dy
dy is a parameter of type double
Moves the Geometry dX units along the X-Axis and dY units along the Y-Axis. Only changes the position of the Geometry without altering any of the other characteristics. Move is a spatial offset.
