Table.HorizontalAlign Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'alignement horizontal du contrôle Table dans la page.
public:
virtual property System::Web::UI::WebControls::HorizontalAlign HorizontalAlign { System::Web::UI::WebControls::HorizontalAlign get(); void set(System::Web::UI::WebControls::HorizontalAlign value); };
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { get; set; }
public virtual System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.HorizontalAlign : System.Web.UI.WebControls.HorizontalAlign with get, set
member this.HorizontalAlign : System.Web.UI.WebControls.HorizontalAlign with get, set
Public Overridable Property HorizontalAlign As HorizontalAlign
Valeur de propriété
Une des valeurs d'énumération HorizontalAlign. La valeur par défaut est NotSet
.
- Attributs
Exemples
<%@ 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 id="Head2" runat="server">
<title>Table - C# Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>Table - C# Example</h3>
<asp:Table id="Table1" runat="server"
GridLines="Both" BackImageUrl="image1.gif"
HorizontalAlign="Center" CellSpacing="3"
CellPadding="3">
<asp:TableRow>
<asp:TableCell>Row 0, Col 0</asp:TableCell>
<asp:TableCell>Row 0, Col 1</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>Row 1, Col 0</asp:TableCell>
<asp:TableCell>Row 1, Col 1</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</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 id="Head2" runat="server">
<title>Table - VB.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>Table - C# Example</h3>
<asp:Table id="Table1" runat="server"
GridLines="Both" BackImageUrl="image1.gif"
HorizontalAlign="Center" CellSpacing="3"
CellPadding="3">
<asp:TableRow>
<asp:TableCell>Row 0, Col 0</asp:TableCell>
<asp:TableCell>Row 0, Col 1</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>Row 1, Col 0</asp:TableCell>
<asp:TableCell>Row 1, Col 1</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</form>
</body>
</html>
Remarques
Utilisez la HorizontalAlign propriété pour spécifier l’alignement horizontal du Table contrôle dans la page. Le tableau suivant répertorie les différents styles d’alignement horizontal.
Valeur HorizontalAlign | Description |
---|---|
NotSet |
L’alignement horizontal du Table contrôle n’a pas été défini. |
Left |
Le Table contrôle est laissé justifié sur la page. |
Center |
Le Table contrôle est centré sur la page. |
Right |
Le Table contrôle est justifié à droite sur la page. |
Justify |
Le Table contrôle est aligné sur les marges gauche et droite de la page. |