ArcObjects Library Reference (SystemUI)  

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(
  BSTR* 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