BulletedListDisplayModeとは? わかりやすく解説

BulletedList.DisplayMode プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

BulletedList コントロールリスト内容表示モード取得または設定します

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Overridable Property
 DisplayMode As BulletedListDisplayMode
Dim instance As BulletedList
Dim value As BulletedListDisplayMode

value = instance.DisplayMode

instance.DisplayMode = value
public virtual BulletedListDisplayMode DisplayMode { get;
 set; }
public:
virtual property BulletedListDisplayMode DisplayMode {
    BulletedListDisplayMode get ();
    void set (BulletedListDisplayMode value);
}
/** @property */
public BulletedListDisplayMode get_DisplayMode ()

/** @property */
public void set_DisplayMode (BulletedListDisplayMode
 value)
public function get DisplayMode
 () : BulletedListDisplayMode

public function set DisplayMode
 (value : BulletedListDisplayMode)

プロパティ
BulletedListDisplayMode 値の 1 つ既定値Text です。

例外例外
例外種類条件

ArgumentOutOfRangeException

指定した型が、BulletedListDisplayMode 値ではありません。

解説解説
使用例使用例

BulletedList コントロール作成してDisplayMode プロパティ設定する方法を、次のコード例示しますListBox コントロールには、BulletedListDisplayMode 列挙値が設定されます。リスト項目の内容書式は、ユーザーリスト ボックスから選択した表示モードに基づき変わります

<%@ Page Language="VB" %>

<html>
<head>
    <script runat="server">

        Sub Index_Changed(ByVal sender As
 Object, ByVal e As System.EventArgs)

            ' Change the message displayed, based on 
            ' the display mode selected from the list box.
            If DisplayModeListBox.SelectedIndex > -1 Then
                Message1.Text = "You chose: " &
 DisplayModeListBox.SelectedItem.Text
            End If

            ' Change the display mode, based on 
            ' the mode selected from the list box.
            Select Case (DisplayModeListBox.SelectedIndex)
                Case 0
                    ItemsBulletedList.DisplayMode = BulletedListDisplayMode.Text
                    Message2.Text = ""
                Case 1
                    ItemsBulletedList.DisplayMode = BulletedListDisplayMode.HyperLink
                    ' Opens a new browser window to display the page
 linked to.
                    ItemsBulletedList.Target = "_blank"
                    Message2.Text = ""
                Case 2
                    ItemsBulletedList.DisplayMode = BulletedListDisplayMode.LinkButton
                Case Else
                    Throw New Exception("You
 did not select a valid display mode.")
            End Select

        End Sub

        Sub ItemsBulletedList_Click(ByVal sender
 As Object, ByVal e As
 System.Web.UI.WebControls.BulletedListEventArgs)

            ' Change the message displayed, based on the index
            ' of the bulletedlist list item that was clicked.
            Select Case (e.Index)
                Case 0
                    Message2.Text = "You  clicked list item 1."
                Case 1
                    Message2.Text = "You  clicked list item 2."
                Case 2
                    Message2.Text = "You  clicked list item 3."
                Case Else
                    Throw New Exception("You
 did not click a valid list item.")
            End Select

        End Sub
      
</script>

</head>
<body>

    <h3>DisplayMode Example</h3>

    <form ID="Form1" runat="server">
  
    <h3>BulletedListDisplayMode Example</h3>

    <asp:BulletedList id="ItemsBulletedList" 
        BulletStyle="Disc"
        DisplayMode="Text" 
        OnClick="ItemsBulletedList_Click"
        runat="server">    
        <asp:ListItem Value="http://www.cohowinery.com">Coho
 Winery</asp:ListItem>
        <asp:ListItem Value="http://www.contoso.com">Contoso,
 Ltd.</asp:ListItem>
        <asp:ListItem Value="http://www.tailspintoys.com">Tailspin
 Toys</asp:ListItem>
    </asp:BulletedList></P>    

        <hr>      
                         
        <h4>Select from the list to change the display mode:</h4>
            
    <asp:ListBox id="DisplayModeListBox" 
        Rows="1"
            SelectionMode="Single"
            AutoPostBack="True"
            OnSelectedIndexChanged="Index_Changed"
        runat="server">             
            <asp:ListItem>Text</asp:ListItem>
            <asp:ListItem>Hyperlink</asp:ListItem>
            <asp:ListItem>LinkButton</asp:ListItem>
    </asp:ListBox>    
        
    <asp:Label id="Message1" 
        runat="server"/><br><br>

        <asp:Label id="Message2"
            runat="server"/>         
             
   </form>

</body>
</html>
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
BulletedList クラス
BulletedList メンバ
System.Web.UI.WebControls 名前空間
BulletedListDisplayMode
Value
BulletedList.Click
その他の技術情報
BulletedList Web サーバー コントロール

BulletedListDisplayMode 列挙体

メモ : この列挙体は、.NET Framework version 2.0新しく追加されたものです。

BulletedList コントロール内のリスト項目の内容適用できる表示動作指定します

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Enumeration BulletedListDisplayMode
Dim instance As BulletedListDisplayMode
public enum BulletedListDisplayMode
public enum class BulletedListDisplayMode
public enum BulletedListDisplayMode
public enum BulletedListDisplayMode
メンバメンバ
解説解説

BulletedListDisplayMode 列挙値は、BulletedList コントロールリスト項目の内容適用できる表示動作表しますDisplayMode プロパティでは、これらの列挙値を使用してBulletedList コントロールリスト項目の内容表示動作設定します。たとえば、DisplayMode プロパティHyperLink 値を設定すると、BulletedList コントロールの各リスト項目の内容ハイパーリンクとして表示されます。

Text 値を使用すると、リスト項目の内容を、追加機能のない通常のテキストとして表示できます

HyperLink 値を使用すると、リスト項目の内容ハイパーリンクとして表示できますハイパーリンククリックすると、参照先URL移動しますハイパーリンク移動先の URL指定するには、Value プロパティ使用します

LinkButton 値を使用すると、リスト項目の内容をリンク ボタンとして表示できます。BulletedList.Click イベント使用すると、ユーザーがリンク ボタンクリックしたときに、サーバーポストバックできますユーザークリックした BulletedList 内のリンク ボタンインデックス特定するには、BulletedListEventArgs クラスイベント データ使用します

使用例使用例

次のコード例は、BulletedList コントロール作成してDisplayMode プロパティ設定する方法示してます。ListBox コントロールには、BulletedListDisplayMode 値が設定されます。リスト項目の内容書式は、ユーザーリスト ボックスから選択した表示モードに基づき変わります

<%@ Page Language="VB" %>

<html>
<head>

    <script runat="server">       
        Sub Index_Changed(ByVal sender As
 Object, ByVal e As System.EventArgs)
            ' Change the message displayed, based on 
            ' the style selected from the list box.
            If BulletStylesListBox.SelectedIndex > -1 Then
                Message.Text = "You selected bullet style: "
 & BulletStylesListBox.SelectedItem.Text
            End If

            ' Change the bullet style used, based on 
            ' the style selected from the list box.
            Select Case (BulletStylesListBox.SelectedIndex)
                Case 0
                    ItemsBulletedList.BulletStyle = BulletStyle.Numbered
                Case 1
                    ItemsBulletedList.BulletStyle = BulletStyle.LowerAlpha
                Case 2
                    ItemsBulletedList.BulletStyle = BulletStyle.UpperAlpha
                Case 3
                    ItemsBulletedList.BulletStyle = BulletStyle.LowerRoman
                Case 4
                    ItemsBulletedList.BulletStyle = BulletStyle.UpperRoman
                Case 5
                    ItemsBulletedList.BulletStyle = BulletStyle.Disc
                Case 6
                    ItemsBulletedList.BulletStyle = BulletStyle.Circle
                Case 7
                    ItemsBulletedList.BulletStyle = BulletStyle.Square
                Case 8
                    ItemsBulletedList.BulletStyle = BulletStyle.CustomImage
                    ' Specify the path to the custom image to use for
 the bullet.
                    ItemsBulletedList.BulletImageUrl = "Images/image1.jpg"
                Case 9
                    Message.Text = "You selected NotSet. The browser
 will determine the bullet style."
                Case Else
                    Throw New Exception("You
 did not select a valid bullet style.")
            End Select

        End Sub

</script>

</head>
<body>
    <form ID="Form1" runat="server">
 

        <h3>BulletStyle Example</h3>

        <asp:BulletedList id="ItemsBulletedList"
             
            DisplayMode="Text" 
            BulletStyle=NotSet
            runat="server">    
                <asp:ListItem Value="0">Coho
 Winery</asp:ListItem>
                <asp:ListItem Value="1">Contoso,
 Ltd.</asp:ListItem>
                <asp:ListItem Value="2">Tailspin
 Toys</asp:ListItem>
            </asp:BulletedList>        

            <hr>

        <h4>Select a bullet type:</h4>        
        <asp:ListBox id="BulletStylesListBox" 
            SelectionMode="Single"
            Rows=1 
            OnSelectedIndexChanged="Index_Changed"
            AutoPostBack="True"
            runat="server">         
                <asp:ListItem Value="Numbered">Numbered</asp:ListItem>
                <asp:ListItem Value="LowerAlpha">LowerAlpha</asp:ListItem>
                <asp:ListItem Value="UpperAlpha">UpperAlpha</asp:ListItem>
                <asp:ListItem Value="LowerRoman">LowerRoman</asp:ListItem>
                <asp:ListItem Value="UpperRoman">UpperRoman</asp:ListItem>
                <asp:ListItem>Disc</asp:ListItem>
                <asp:ListItem>Circle</asp:ListItem>
                <asp:ListItem>Square</asp:ListItem>
                <asp:ListItem>CustomImage</asp:ListItem>       
                <asp:ListItem Value="NotSet">NotSet</asp:ListItem>
        </asp:ListBox>        
            
        <hr>

        <asp:Label id="Message" 
            runat="server"/>            
                  
   </form>
</body>
</html>
<%@ Page Language="C#" %>

<html>
<head>

    <script runat="server">       
        protected void Index_Changed(object
 sender, EventArgs e)
        {
            // Change the message displayed, based on 
            // the style selected from the list box.
            if (BulletStylesListBox.SelectedIndex > -1)
            {
                Message.Text = "You selected bullet style: " +
                    BulletStylesListBox.SelectedItem.Text;
            }

            // Change the bullet style used, based on 
            // the style selected from the list box.
            switch (BulletStylesListBox.SelectedIndex)
            {
                case 0:
                    ItemsBulletedList.BulletStyle = BulletStyle.Numbered;
                    break;
                case 1:
                    ItemsBulletedList.BulletStyle = BulletStyle.LowerAlpha;
                    break;
                case 2:
                    ItemsBulletedList.BulletStyle = BulletStyle.UpperAlpha;
                    break;
                case 3:
                    ItemsBulletedList.BulletStyle = BulletStyle.LowerRoman;
                    break;
                case 4:
                    ItemsBulletedList.BulletStyle = BulletStyle.UpperRoman;
                    break;
                case 5:
                    ItemsBulletedList.BulletStyle = BulletStyle.Disc;
                    break;
                case 6:
                    ItemsBulletedList.BulletStyle = BulletStyle.Circle;
                    break;
                case 7:
                    ItemsBulletedList.BulletStyle = BulletStyle.Square;
                    break;
                case 8:
                    ItemsBulletedList.BulletStyle = BulletStyle.CustomImage;
                    // Specify the path to the custom image to use for
 the bullet.
                    ItemsBulletedList.BulletImageUrl = "Images/image1.jpg";
                    break;
                case 9:
                    Message.Text = "You selected NotSet. The browser will determine
 the bullet style.";
                    break;
                default:
                    throw new Exception("You did not select
 a valid bullet style.");
            }

        }
</script>

</head>
<body>
    <form id="Form1" runat="server">
        <h3>
            BulletStyle Example</h3>
        <asp:BulletedList ID="ItemsBulletedList" DisplayMode="Text"
 BulletStyle="NotSet"
            runat="server">
            <asp:ListItem Value="0">Coho Winery</asp:ListItem>
            <asp:ListItem Value="1">Contoso, Ltd.</asp:ListItem>
            <asp:ListItem Value="2">Tailspin Toys</asp:ListItem>
        </asp:BulletedList>
        <hr>
        <h4>
            Select a bullet type:</h4>
        <asp:ListBox ID="BulletStylesListBox" SelectionMode="Single"
 Rows="1" OnSelectedIndexChanged="Index_Changed"
            AutoPostBack="True" runat="server">
            <asp:ListItem Value="Numbered">Numbered</asp:ListItem>
            <asp:ListItem Value="LowerAlpha">LowerAlpha</asp:ListItem>
            <asp:ListItem Value="UpperAlpha">UpperAlpha</asp:ListItem>
            <asp:ListItem Value="LowerRoman">LowerRoman</asp:ListItem>
            <asp:ListItem Value="UpperRoman">UpperRoman</asp:ListItem>
            <asp:ListItem>Disc</asp:ListItem>
            <asp:ListItem>Circle</asp:ListItem>
            <asp:ListItem>Square</asp:ListItem>
            <asp:ListItem>CustomImage</asp:ListItem>
            <asp:ListItem Value="NotSet">NotSet</asp:ListItem>
        </asp:ListBox>
        <hr>
        <asp:Label ID="Message" runat="server" />
    </form>
</body>
</html>
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
System.Web.UI.WebControls 名前空間
BulletedList クラス
BulletedList.DisplayMode プロパティ



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「BulletedListDisplayMode」の関連用語

BulletedListDisplayModeのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



BulletedListDisplayModeのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS