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


IAffineTransformation2D.MoveVector Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IA > IAffineTransformation2D Interface > IAffineTransformation2D.MoveVector Method
ArcGIS Developer Help

IAffineTransformation2D.MoveVector Method

Performs an X and Y translation defined by a 2D vector.

[Visual Basic .NET]
Public Sub MoveVector ( _
    ByVal movementVector As ILine _
)
[C#]
public void MoveVector (
    ILine movementVector
);
[C++]
HRESULT MoveVector(
  ILine* movementVector
);
[C++]
Parameters
movementVector 

movementVector is a parameter of type ILine*

Product Availability

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

Description

Translates (Shifts) the existing affine transformation as defined by the coordinates of the input MoveVector (where the FromPoint of the MoveVector serves as the origin point of the translation).

See Also

IAffineTransformation2D Interface