TreeNode.ToolTip プロパティ
アセンブリ: System.Web (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)
ノードのツールヒントのテキスト。既定値は空の文字列 ("") です。

ノードのツールヒントのテキストを指定するには、ToolTip プロパティを使用します。ツールヒントのテキストは、マウス ポインタをノードの上に置くと表示されます。
このプロパティを設定している場合、デザイナ ツールを使用して、その値を自動的にリソース ファイルに保存できます。詳細については、LocalizableAttribute、ASP.NET のグローバリゼーションおよびローカリゼーション の各トピックを参照してください。

ToolTip プロパティを使用して TreeView コントロールのノードのツールヒントを指定する方法を次のコード例に示します。
<%@ Page Language="VB" %> <html> <body> <form runat="server"> <h3>TreeNode ToolTip Example</h3> <h5>Position the mouse pointer over a node.</h5> <asp:TreeView id="LinksTreeView" Font-Name= "Arial" ForeColor="Blue" InitialExpandDepth="2" runat="server"> <LevelStyles> <asp:TreeNodeStyle ChildNodesPadding="10" Font-Bold="true" Font-Size="12pt" ForeColor="DarkGreen"/> <asp:TreeNodeStyle ChildNodesPadding="5" Font-Bold="true" Font-Size="10pt"/> <asp:TreeNodeStyle ChildNodesPadding="5" Font-UnderLine="true" Font-Size="10pt"/> <asp:TreeNodeStyle ChildNodesPadding="10" Font-Size="8pt"/> </LevelStyles> <Nodes> <asp:TreeNode Text="Table of Contents" ToolTip="Table of Contents Description"> <asp:TreeNode Text="Chapter One" ToolTip="Chapter One Description"> <asp:TreeNode Text="Section 1.0" ToolTip="Section 1.0 Description"> <asp:TreeNode Text="Topic 1.0.1"/> <asp:TreeNode Text="Topic 1.0.2"/> <asp:TreeNode Text="Topic 1.0.3"/> </asp:TreeNode> <asp:TreeNode Text="Section 1.1" ToolTip="Section 1.1 Description"> <asp:TreeNode Text="Topic 1.1.1"/> <asp:TreeNode Text="Topic 1.1.2"/> <asp:TreeNode Text="Topic 1.1.3"/> <asp:TreeNode Text="Topic 1.1.4"/> </asp:TreeNode> </asp:TreeNode> <asp:TreeNode Text="Chapter Two" ToolTip="Chapter Two Description"> <asp:TreeNode Text="Section 2.0" ToolTip="Section 2.0 Description"> <asp:TreeNode Text="Topic 2.0.1"/> <asp:TreeNode Text="Topic 2.0.2"/> </asp:TreeNode> </asp:TreeNode> </asp:TreeNode> <asp:TreeNode Text="Appendix A" ToolTip="Appendix A Description"/> <asp:TreeNode Text="Appendix B" ToolTip="Appendix B Description"/> <asp:TreeNode Text="Appendix C" ToolTip="Appendix C Description"/> </Nodes> </asp:TreeView> </form> </body> </html>
<%@ Page Language="C#" %> <html> <body> <form runat="server"> <h3>TreeNode ToolTip Example</h3> <h5>Position the mouse pointer over a node.</h5> <asp:TreeView id="LinksTreeView" Font-Name= "Arial" ForeColor="Blue" InitialExpandDepth="2" runat="server"> <LevelStyles> <asp:TreeNodeStyle ChildNodesPadding="10" Font-Bold="true" Font-Size="12pt" ForeColor="DarkGreen"/> <asp:TreeNodeStyle ChildNodesPadding="5" Font-Bold="true" Font-Size="10pt"/> <asp:TreeNodeStyle ChildNodesPadding="5" Font-UnderLine="true" Font-Size="10pt"/> <asp:TreeNodeStyle ChildNodesPadding="10" Font-Size="8pt"/> </LevelStyles> <Nodes> <asp:TreeNode Text="Table of Contents" ToolTip="Table of Contents Description"> <asp:TreeNode Text="Chapter One" ToolTip="Chapter One Description"> <asp:TreeNode Text="Section 1.0" ToolTip="Section 1.0 Description"> <asp:TreeNode Text="Topic 1.0.1"/> <asp:TreeNode Text="Topic 1.0.2"/> <asp:TreeNode Text="Topic 1.0.3"/> </asp:TreeNode> <asp:TreeNode Text="Section 1.1" ToolTip="Section 1.1 Description"> <asp:TreeNode Text="Topic 1.1.1"/> <asp:TreeNode Text="Topic 1.1.2"/> <asp:TreeNode Text="Topic 1.1.3"/> <asp:TreeNode Text="Topic 1.1.4"/> </asp:TreeNode> </asp:TreeNode> <asp:TreeNode Text="Chapter Two" ToolTip="Chapter Two Description"> <asp:TreeNode Text="Section 2.0" ToolTip="Section 2.0 Description"> <asp:TreeNode Text="Topic 2.0.1"/> <asp:TreeNode Text="Topic 2.0.2"/> </asp:TreeNode> </asp:TreeNode> </asp:TreeNode> <asp:TreeNode Text="Appendix A" ToolTip="Appendix A Description"/> <asp:TreeNode Text="Appendix B" ToolTip="Appendix B Description"/> <asp:TreeNode Text="Appendix C" ToolTip="Appendix C Description"/> </Nodes> </asp:TreeView> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からTreeNode.ToolTip プロパティを検索する場合は、下記のリンクをクリックしてください。

- TreeNode.ToolTip プロパティのページへのリンク