HierarchyInfo.ToolTip Property

Definition

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.

Applies to