BulletStyle 列挙体
アセンブリ: System.Web (system.web.dll 内)

Public Enumeration BulletStyle

メンバ名 | 説明 | |
---|---|---|
Circle | 箇条書きスタイルは、塗りつぶしのない円です。 | |
CustomImage | 箇条書きスタイルは、カスタム イメージです。 | |
Disc | 箇条書きスタイルは、塗りつぶされた円です。 | |
LowerAlpha | 箇条書きスタイルは、小文字の文字 (a、b、c ...) です。 | |
LowerRoman | 箇条書きスタイルは、小文字のローマ数字 (i、ii、iii ...) です。 | |
NotSet | 箇条書きスタイルは設定されていません。BulletedList コントロールを表示するブラウザによって、表示する箇条書きスタイルが決まります。 | |
Numbered | 箇条書きスタイルは、番号 (1、2、3 ...) です。 | |
Square | 箇条書きスタイルは、塗りつぶされた四角形です。 | |
UpperAlpha | 箇条書きスタイルは、大文字の文字 (A、B、C ...) です。 | |
UpperRoman | 箇条書きスタイルは、大文字のローマ数字 (I、II、III ...) です。 |

BulletedList コントロールのリスト項目に適用できる箇条書きスタイルを表す BulletStyle 列挙体。BulletStyle プロパティでは、これらの列挙値を使用して、BulletedList コントロールの箇条書きスタイルを設定します。たとえば、BulletStyle プロパティを Disc に設定した場合、BulletedList コントロールの各リスト項目には、次に示すように、リスト項目の内容の前に塗りつぶされた円が表示されます。
CustomImage 箇条書きスタイルを指定すると、箇条書きに独自のイメージを使用できます。CustomImage 箇条書きスタイルを指定する場合は、BulletImageUrl プロパティを、使用するカスタム イメージの URL に設定する必要もあります。
NotSet を指定した場合、コントロールが表示されるブラウザによって、BulletedList コントロールのリスト項目に表示する箇条書きスタイルが決まります。
Topic | Location |
---|---|
方法 : Web フォーム ページに BulletedList Web サーバー コントロールを追加する (Visual Studio) | Visual Studio での ASP .NET Web アプリケーションの作成 |

BulletedList コントロールを作成する方法を次の例に示します。ListBox コントロールに、使用できるすべての BulletStyle 列挙値が設定されます。ユーザーがリスト ボックスから選択したスタイルに応じて、箇条書きスタイルが変わります。
<%@ 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>

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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- BulletStyle 列挙体のページへのリンク