TreeNodeBinding.ToolTip Property

Gets or sets the ToolTip text for a node to which the TreeNodeBinding object is applied.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

[LocalizableAttribute(true)] 
public:
property String^ ToolTip {
	String^ get ();
	void set (String^ value);
}
/** @property */
public String get_ToolTip ()

/** @property */
public void set_ToolTip (String value)

public function get ToolTip () : String

public function set ToolTip (value : String)

Not applicable.

Property Value

The ToolTip text for a node to which the TreeNodeBinding object is applied. The default is an empty string (""), which indicates that the ToolTip property is not set.

When the TreeView control is bound to a data source, use the ToolTip property to specify the value to bind to the ToolTip property of a TreeNode object. This binding relationship affects all TreeNode objects to which the TreeNodeBinding object is applied. The ToolTip text is displayed when the mouse pointer is positioned over the node.

NoteNote:

You can selectively override the ToolTip property by setting the ToolTip property of each node directly.

Instead of using the ToolTip property to bind the same ToolTip text to each node, you can bind the ToolTip property of a TreeNode object to a field of a data source by setting the ToolTipField property.

The value of this property is stored in view state.

The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.

This section contains two code examples. The first code example demonstrates how to use the ToolTip property to specify the ToolTip text for a node to which the TreeNodeBinding object is applied. The second code example provides sample XML data for the first code example.

The following example demonstrates how to use the ToolTip property to specify the ToolTip text for a node to which the TreeNodeBinding object is applied. For this example to work correctly, you must copy the sample XML data, provided after this code example, to a file named Booklist.xml.

No code example is currently available or this language may not be supported.

The following code example provides sample XML data for the preceding code example.

<Books Text="Books List">
    <Book Text="Book Title One"
        Value="1" 
        Image="Bookimage1.jpg"
        ImageToolTip="Book 1 Photo" 
        Nav="http://www.microsoft.com"
        Tip="Book Title 1">
        <Description Text="Book Description">
        </Description>
        <Price Value="$1.99">
        </Price>
        <Author Text="Author Name"
            Value="LastName" 
            Image="Authorimage1.jpg" 
            Nav="http://www.microsoft.com"
            Tip="Author Name">
        </Author>
    </Book>
    <Book Text="Book Title Two"
        Value="2" 
        Image="Bookimage2.jpg"
        ImageToolTip="Book 2 Photo" 
        Nav="http://www.microsoft.com"
        Tip="Click Me">
        <Description Text="Book Description">
        </Description>
        <Price Value="$2.99">
        </Price>
        <Author Text="Author Name"
            Value="LastName" 
            Image="Authorimage2.jpg" 
            Nav="http://www.microsoft.com"
            Tip="Author Name">
        </Author>
    </Book>
</Books>

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: