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


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

IVector3D.Move Method

Move the vector by adding a shift value to each component.

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

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

Product Availability

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

Description

Moves the Vector3D by adding a given input factor to each of the X, Y, and Z Components.  The result is the same as adding another Vector3D defined by the inputs to the base Vector3D.

See Also

IVector3D Interface