BulletedList コンストラクタ
アセンブリ: System.Web (system.web.dll 内)



BulletedList クラスの新しいインスタンスを初期化する方法を次のコード例に示します。
<%@ Page Language="VB" %> <html> <head> <script runat="server"> Sub Button1_Click(ByVal Sender As Object, ByVal e As EventArgs) ' Create a BulletedList control. Dim CompaniesBulletedList As New BulletedList ' Add the list items to the BulletedList control. CompaniesBulletedList.Items.Add("Coho Winery") CompaniesBulletedList.Items.Add("Contoso, Ltd.") CompaniesBulletedList.Items.Add("Tailspin Toys") ' Add the BulletedList control to the Controls collection ' of the PlaceHolder control. Place.Controls.Add(CompaniesBulletedList) End Sub </script> </head> <body> <form ID="Form1" runat="server"> <h3>BulletedList Constructor Example</h3> <asp:PlaceHolder id="Place" runat="server"> </asp:PlaceHolder> <hr> <asp:Button id="Button1" Text="Create and Show a BulletedList" OnClick="Button1_Click" 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からBulletedList コンストラクタを検索する場合は、下記のリンクをクリックしてください。

- BulletedList コンストラクタのページへのリンク