Wizard.CellPadding 屬性

定義

取得或設定儲存格內容和其框線之間的間距。

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

屬性值

Int32

儲存格內容和其框線之間的間距 (以像素為單位)。 預設值是 0。

範例

下列程式碼範例示範如何使用 CellPaddingCellSpacing 屬性,以宣告方式設計控制項的配置 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>

備註

CellPadding使用 屬性來控制儲存格內容與儲存格框線之間的間距。 指定的填補量會新增至儲存格的所有四邊。 資料行中的所有儲存格都會共用相同的儲存格寬度;因此,間距會套用至資料行中最寬的儲存格。 同樣地,相同資料列中的所有儲存格都會共用相同的儲存格高度。 因此,間距會套用至資料列中最高的儲存格。 無法指定個別儲存格大小。

適用於

另請參閱