This document is archived and information here might be outdated.  Recommended version.


ITransform2D.Move Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IT > ITransform2D Interface > ITransform2D.Move Method
ArcGIS Developer Help

ITransform2D.Move Method

Moves dx units horizontally and dy units vertically.

[Visual Basic .NET]
Public Sub Move ( _
    ByVal dx As Double, _
    ByVal dy As Double _
)
[C#]
public void Move (
    double dx,
    double dy
);
[C++]
HRESULT Move(
  double dx,
  double dy
);
[C++]
Parameters
dx 

dx is a parameter of type double dy
dy is a parameter of type double

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

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.

Remarks

 

Transform2D Move Example

See Also

ITransform2D Interface

.NET Samples

Create custom move, rotate, and scale GeometricEffects within a single project Implementing a schematic layout algorithm and its layout property page