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


IVector3D.QueryComponents 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.QueryComponents Method
ArcGIS Developer Help

IVector3D.QueryComponents Method

Get the values of the vector's components.

[Visual Basic .NET]
Public Sub QueryComponents ( _
    ByRef dx As Double, _
    ByRef dy As Double, _
    ByRef dz As Double _
)
[C#]
public void QueryComponents (
    ref double dx,
    ref double dy,
    ref double dz
);
[C++]
HRESULT QueryComponents(
  System.Double* dx,
  System.Double* dy,
  System.Double* dz
);
[C++]
Parameters
dx [out]

dx is a parameter of type double* dy [out]
dy is a parameter of type double* dz [out]
dz is a parameter of type double*

Product Availability

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

Description

Returns the X Component, Y Component, and X Component of the 3 Dimensional vector.

Remarks

 

Vector3D QueryComponents Example

See Also

IVector3D Interface