HierarchyInfo.ToolTip Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in the derived class, gets the tooltip text for the node.
public:
virtual property System::String ^ ToolTip { System::String ^ get(); };
public virtual string ToolTip { get; }
member this.ToolTip : string
Public Overridable ReadOnly Property ToolTip As String
Property Value
The tooltip text for the node.
Examples
The following example implements the ToolTip property.
public override string ToolTip
{
get
{
return "HierarchyInfo Demo TT";
}
}
Remarks
The ToolTip property is provided for developers and is not used by the Microsoft.Web.Management
classes.