ArcObjects Library Reference (GlobeCore)  

IGlobeViewUtil.GetIsPointVisible Method

Detect if point with geocentric coordinates is outside the pyramidal view, too close to the viewpoint, or too far from it.

[Visual Basic .NET]
Public Sub GetIsPointVisible ( _
    ByVal X As Double, _
    ByVal Y As Double, _
    ByVal Z As Double, _
    ByRef pOutsideView As Boolean, _
    ByRef pTooClose As Boolean, _
    ByRef pTooFar As Boolean _
)
[C#]
public void GetIsPointVisible (
    double X,
    double Y,
    double Z,
    ref bool pOutsideView,
    ref bool pTooClose,
    ref bool pTooFar
);
[C++]
HRESULT GetIsPointVisible(
  double X,
  double Y,
  double Z,
  VARIANT_BOOL* pOutsideView,
  VARIANT_BOOL* pTooClose,
  VARIANT_BOOL* pTooFar
);
[C++]

Parameters

X [in]   X is a parameter of type double Y [in]   Y is a parameter of type double Z [in]   Z is a parameter of type double pOutsideView [out]   pOutsideView is a parameter of type VARIANT_BOOL pTooClose [out]   pTooClose is a parameter of type VARIANT_BOOL pTooFar [out]   pTooFar is a parameter of type VARIANT_BOOL

Product Availability

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

See Also

IGlobeViewUtil Interface