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


IActiveView.TipText Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IA > IActiveView Interface > IActiveView.TipText Property
ArcGIS Developer Help

IActiveView.TipText Property

The tip text to display at the given location.

[Visual Basic .NET]
Public Function get_TipText ( _
    ByVal x As Double, _
    ByVal y As Double _
) As String
[C#]
public string get_TipText (
    double x,
    double y
);
[C++]
HRESULT get_TipText(
  double x,
  double y,
  System.String* TipText
);
[C++]
Parameters
x [in]

x is a parameter of type double y [in]
y is a parameter of type double TipText [out, retval]
TipText is a parameter of type BSTR*

Product Availability

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

Remarks

Returns the tip text (through ILayer::TipText) for the first feature found at the given coordinate. This property only works for a Map object. This property returns an empty string for PageLayout objects.

See Also

IActiveView Interface