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


ILayer2.ShowTips Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IL > ILayer2 Interface > ILayer2.ShowTips Property
ArcGIS Developer Help

ILayer2.ShowTips Property

Indicates if the layer shows map tips.

[Visual Basic .NET]
Public Property ShowTips As Boolean
[C#]
public bool ShowTips {get; set;}
[C++]
HRESULT get_ShowTips(
  Boolean* Show
);
[C++]
HRESULT put_ShowTips(
  VARIANT_BOOL Show
);
[C++]
Parameters
Show [out, retval]

Show is a parameter of type bool* Show [in]
Show is a parameter of type bool

Product Availability

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

Remarks

Indicates whether or not map tips are shown for the layer. If set to True, then map tips will be shown for the layer. You can determine the text that will be shown via TipText. For a FeatureLayer, this text comes from the data for IFeatureLayer::DisplayField.

See Also

ILayer2 Interface