ArcObjects Library Reference (EngineCore)  

IGraphicTracker.SetPointOrientation Method

Sets the orientation for the given point graphic. Note that the orientation will only be applied if the graphic has its orientation mode set to esriGTOrientationFixed.

[Visual Basic .NET]
Public Sub SetPointOrientation ( _
    ByVal id As Integer, _
    ByVal dPitch As Double, _
    ByVal dRoll As Double, _
    ByVal dYaw As Double _
)
[C#]
public void SetPointOrientation (
    int id,
    double dPitch,
    double dRoll,
    double dYaw
);
[C++]
HRESULT SetPointOrientation(
  long id,
  double dPitch,
  double dRoll,
  double dYaw
);
[C++]

Parameters

id [in]   id is a parameter of type long dPitch [in]   dPitch is a parameter of type double dRoll [in]   dRoll is a parameter of type double dYaw [in]   dYaw is a parameter of type double

Product Availability

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

Description

Sets the point symbol's orientation to the supplied pitch, roll and yaw values. This applies only if the graphic's orientation is fixed using the SetOrientation() method. In 2D, only the yaw value is used.

See Also

IGraphicTracker Interface