Wizard.CellSpacing プロパティ

定義

セル間の間隔を取得または設定します。

public:
 virtual property int CellSpacing { int get(); void set(int value); };
public virtual int CellSpacing { get; set; }
member this.CellSpacing : int with get, set
Public Overridable Property CellSpacing As Integer

プロパティ値

Int32

セルの間隔をピクセル単位で指定します。 既定値は 0 です。

次のコード例では、コントロールとCellSpacingプロパティをCellPadding使用して、コントロールのレイアウトを宣言によってプログラミングする方法をWizard示します。

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<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="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<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>

注釈

ウィザード コントロール内の CellSpacing 隣接するセル間の間隔を制御するには、このプロパティを使用します。 この間隔は、垂直方向と水平方向の両方に適用されます。

適用対象

こちらもご覧ください