Menu.ItemWrap プロパティ

定義

メニュー項目のテキストを折り返すかどうかを示す値を取得または設定します。

public:
 property bool ItemWrap { bool get(); void set(bool value); };
public bool ItemWrap { get; set; }
member this.ItemWrap : bool with get, set
Public Property ItemWrap As Boolean

プロパティ値

メニュー項目のテキストを折り返す場合は true。それ以外の場合は false。 既定値は、false です。

次のコード例では、 プロパティを使用 ItemWrap してコントロールでテキストの折り返しを有効にする方法を Menu 示します。


<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

  <head runat="server">
    <title>Menu ItemWrap Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>Menu ItemWrap Example</h3>
    
      <!-- Place the Menu control in a table to force text -->
      <!-- wrapping to occur.                              -->
      <table style="border:1; height:100%">
        <tr>
          <td style="width:200px; vertical-align: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="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

  <head runat="server">
    <title>Menu ItemWrap Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>Menu ItemWrap Example</h3>
    
      <!-- Place the Menu control in a table to force text -->
      <!-- wrapping to occur.                              -->
      <table style="border:1; height:100%">
        <tr>
          <td style="width:200px; vertical-align: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>

注釈

各メニュー項目に ItemWrap 表示されるテキストを折り返すかどうかを指定するには、 プロパティを使用します。 テキストの領域が不足すると、自動的に分割され、次の行に続きます。

適用対象

こちらもご覧ください