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

Public Overridable Property CellSpacing As Integer
Dim instance As RadioButtonList Dim value As Integer value = instance.CellSpacing instance.CellSpacing = value
/** @property */ public int get_CellSpacing () /** @property */ public void set_CellSpacing (int value)
隣接するテーブル セル間の間隔 (ピクセル単位)。既定値は -1 です。このプロパティが設定されていないことを示します。

このプロパティは、RepeatLayout プロパティが RepeatLayout.Table に設定されている場合にだけ適用されます。
このプロパティを使用して、テーブルのそれぞれのセル間の余白を制御します。このプロパティは垂直方向と水平方向の両方に適用されます。

CellSpacing プロパティを使用して RadioButtonList コントロールのセル間の余白を 10 ピクセルにする方法を次のコード例に示します。
<%@ Page Language="VB" AutoEventWireup="True" %> <asp:RadioButtonList id=RadioButtonList1 RepeatLayout = "Table" CellSpacing = "10" runat="server"> <asp:ListItem>Item 1</asp:ListItem> <asp:ListItem>Item 2</asp:ListItem> <asp:ListItem>Item 3</asp:ListItem> <asp:ListItem>Item 4</asp:ListItem> <asp:ListItem>Item 5</asp:ListItem> <asp:ListItem>Item 6</asp:ListItem> </asp:RadioButtonList>
<%@ Page Language="C#" AutoEventWireup="True" %> <asp:RadioButtonList id=RadioButtonList1 RepeatLayout = "Table" CellSpacing = "10" runat="server"> <asp:ListItem>Item 1</asp:ListItem> <asp:ListItem>Item 2</asp:ListItem> <asp:ListItem>Item 3</asp:ListItem> <asp:ListItem>Item 4</asp:ListItem> <asp:ListItem>Item 5</asp:ListItem> <asp:ListItem>Item 6</asp:ListItem> </asp:RadioButtonList>
<%@ Page Language="JScript" AutoEventWireup="True" %> <asp:RadioButtonList id=RadioButtonList1 RepeatLayout = "Table" CellSpacing = "10" runat="server"> <asp:ListItem>Item 1</asp:ListItem> <asp:ListItem>Item 2</asp:ListItem> <asp:ListItem>Item 3</asp:ListItem> <asp:ListItem>Item 4</asp:ListItem> <asp:ListItem>Item 5</asp:ListItem> <asp:ListItem>Item 6</asp:ListItem> </asp:RadioButtonList>

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


RadioButtonList クラス
RadioButtonList メンバ
System.Web.UI.WebControls 名前空間
RadioButtonList.CellPadding プロパティ
その他の技術情報
RadioButton Web サーバー コントロールおよび RadioButtonList Web サーバー コントロール
Weblioに収録されているすべての辞書からRadioButtonList.CellSpacing プロパティを検索する場合は、下記のリンクをクリックしてください。

- RadioButtonList.CellSpacing プロパティのページへのリンク