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

Public Overridable Property CellSpacing As Integer
Dim instance As Wizard Dim value As Integer value = instance.CellSpacing instance.CellSpacing = value
/** @property */ public int get_CellSpacing () /** @property */ public void set_CellSpacing (int value)
セル間の間隔 (ピクセル単位)。既定値は 0 です。


CellPadding プロパティおよび CellSpacing プロパティを使用して、Wizard コントロールのレイアウトのプログラムを宣言によって作成する方法を次のコード例に示します。
<%@ Page Language="VB" %> <html> <body> <form id="form1" runat="server"> <asp:Wizard ID="Wizard1" CellSpacing="20" CellPadding="20" BorderColor="Blue" BorderWidth="2" Runat="server"> <WizardSteps> <asp:WizardStep ID="WizardStep1" Title="Step 1" Runat="server"> You are currently on step 1. </asp:WizardStep> <asp:WizardStep ID="WizardStep2" Title="Step 2" Runat="server"> You are currently on step 2. </asp:WizardStep> <asp:WizardStep ID="WizardStep3" Runat="server" Title="Step 3"> You are currently on step 3. </asp:WizardStep> </WizardSteps> <HeaderTemplate> <b>Wizard CellPadding and CellSpacing Example</b> </HeaderTemplate> </asp:Wizard> </form> </body> </html>
<%@ Page Language="C#" %> <html> <body> <form id="form1" runat="server"> <asp:Wizard ID="Wizard1" CellSpacing="20" CellPadding="20" BorderColor="Blue" BorderWidth="2" Runat="server"> <WizardSteps> <asp:WizardStep ID="WizardStep1" Title="Step 1" Runat="server"> You are currently on step 1. </asp:WizardStep> <asp:WizardStep ID="WizardStep2" Title="Step 2" Runat="server"> You are currently on step 2. </asp:WizardStep> <asp:WizardStep ID="WizardStep3" Runat="server" Title="Step 3"> You are currently on step 3. </asp:WizardStep> </WizardSteps> <HeaderTemplate> <b>Wizard CellPadding and CellSpacing Example</b> </HeaderTemplate> </asp:Wizard> </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に収録されているすべての辞書からWizard.CellSpacing プロパティを検索する場合は、下記のリンクをクリックしてください。

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