Moves dx units horizontally and dy units vertically.
[Visual Basic 6.0] Sub Move(
ByVal dx As Double, _
ByVal dy As Double _
) As Empty
[Visual Basic .NET] Public Sub Move ( ByVal dx As Double, _ ByVal dy As Double _ )
[C#] public void Move ( double dx, double dy );
[C++] public: void Move ( double dx, double dy );
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.
