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


IMultiItem.Message Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > SystemUI > ESRI.ArcGIS.SystemUI > Interfaces > IM > IMultiItem Interface > IMultiItem.Message Property
ArcGIS Developer Help

IMultiItem.Message Property

The status bar message for all items on the multiItem.

[Visual Basic .NET]
Public ReadOnly Property Message As String
[C#]
public string Message {get;}
[C++]
HRESULT get_Message(
  System.String* Message
);
[C++]
Parameters
Message [out, retval]

Message is a parameter of type BSTR*

Product Availability

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

Remarks

When implementing IMultiItem to create a custom multiItem, use the Message property to set the message string that appears in the statusbar of the application when the mouse passes over any of the items in this multiItem.

This assigns the same message to all of the items in the MultiItem. If you want a separate message for each item, then you should use the IMultiItem.ItemMessage property.

See Also

IMultiItem Interface