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


IVector3D.QueryComponents Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (Geometry)  

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(
  double* dx,
  double* dy,
  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