Wizard.CellPadding Propriedade
Definição
Obtém ou define a quantidade de espaço entre o conteúdo da célula e a borda da célula.Gets or sets the amount of space between the contents of the cell and the cell border.
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
Valor da propriedade
A quantidade de espaço, em pixels, entre o conteúdo de uma célula e a borda da célula.The amount of space, in pixels, between the contents of a cell and the cell border. O padrão é 0.The default is 0.
Exemplos
O exemplo de código a seguir demonstra como usar CellPadding as CellSpacing Propriedades e para programar o layout do Wizard controle declarativamente.The following code example demonstrates how to use the CellPadding and CellSpacing properties to program the layout of the Wizard control declaratively.
<%@ 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>
Comentários
Use a CellPadding propriedade para controlar o espaçamento entre o conteúdo de uma célula e a borda da célula.Use the CellPadding property to control the spacing between the contents of a cell and the cell border. O valor de preenchimento especificado é adicionado a todos os quatro lados da célula.The padding amount that is specified is added to all four sides of the cell. Todas as células em uma coluna compartilham a mesma largura de célula; Portanto, o espaçamento é aplicado à célula mais larga na coluna.All cells in a column share the same cell width; therefore, the spacing is applied to the widest cell in the column. Da mesma forma, todas as células na mesma linha compartilham a mesma altura de célula.Similarly, all cells in the same row share the same cell height. Portanto, o espaçamento é aplicado à célula mais alta na linha.Thus, the spacing is applied to the tallest cell in the row. Não é possível especificar tamanhos de células individuais.Individual cell sizes cannot be specified.