Menu.ItemWrap プロパティ
アセンブリ: System.Web (system.web.dll 内)

/** @property */ public boolean get_ItemWrap () /** @property */ public void set_ItemWrap (boolean value)
メニュー項目のテキストを折り返す場合は true。それ以外の場合は false。既定値は false です。


ItemWrap プロパティを使用して、Menu コントロールのテキストの折り返しを有効にする方法のコード例を次に示します。
<%@ Page Language="VB" %> <html> <body> <form runat="server"> <h3>Menu ItemWrap Example</h3> <!-- Place the Menu control in a table to force text --> <!-- wrapping to occur. --> <table border="1" height="100%"> <tr> <td width="200px" valign="top"> <asp:menu id="NavigationMenu" staticdisplaylevels="2" staticsubmenuindent="10" orientation="Vertical" itemwrap="true" dynamicverticaloffset="10" runat="server"> <staticmenuitemstyle verticalpadding="10"/> <items> <asp:menuitem text="How to Add a Menu Control to a Web Form"> <asp:menuitem text="Procedure 1"> <asp:menuitem text="Step 1"/> <asp:menuitem text="Step 2"/> </asp:menuitem> </asp:menuitem> </items> </asp:menu> </td> </tr> </table> </form> </body> </html>
<%@ Page Language="C#" %> <html> <body> <form runat="server"> <h3>Menu ItemWrap Example</h3> <!-- Place the Menu control in a table to force text --> <!-- wrapping to occur. --> <table border="1" height="100%"> <tr> <td width="200px" valign="top"> <asp:menu id="NavigationMenu" staticdisplaylevels="2" staticsubmenuindent="10" orientation="Vertical" itemwrap="true" dynamicverticaloffset="10" runat="server"> <staticmenuitemstyle verticalpadding="10"/> <items> <asp:menuitem text="How to Add a Menu Control to a Web Form"> <asp:menuitem text="Procedure 1"> <asp:menuitem text="Step 1"/> <asp:menuitem text="Step 2"/> </asp:menuitem> </asp:menuitem> </items> </asp:menu> </td> </tr> </table> </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に収録されているすべての辞書からMenu.ItemWrap プロパティを検索する場合は、下記のリンクをクリックしてください。

- Menu.ItemWrap プロパティのページへのリンク