HtmlImage.Align 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 de l'image par rapport aux autres éléments de la page Web.
public:
property System::String ^ Align { System::String ^ get(); void set(System::String ^ value); };
public string Align { get; set; }
member this.Align : string with get, set
Public Property Align As String
Valeur de propriété
Une chaîne qui spécifie l'alignement de l'image par rapport aux autres éléments de la page Web.
Exemples
L’exemple de code suivant montre comment utiliser la Align propriété pour spécifier l’alignement d’une image sur une page web.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!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>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!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>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</form>
</body>
</html>
L’exemple de code suivant montre comment centrer une image sur la page web en encapsulant le contrôle à l’intérieur HtmlImage des balises de paragraphe avec l’attribut align
défini sur "center"
.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!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>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<p style="text-align:center">
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</p>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!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>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<p style="text-align:center">
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</p>
</form>
</body>
</html>
Remarques
Utilisez cette propriété pour spécifier l’alignement de l’image par rapport aux autres éléments de la page Web.
Le tableau suivant représente les valeurs possibles.
Valeur | Description |
---|---|
gauche | L’image est alignée sur le côté gauche de la page Web. |
centre | L’image est alignée au centre de la page Web. |
droite | L’image est alignée sur le côté droit de la page Web. |
top | Les autres éléments de la page Web sont alignés sur le bord supérieur de l’image. |
Milieu | Les autres éléments de la page Web sont alignés sur le milieu de l’image. |
bottom | Les autres éléments de la page web sont alignés sur le bord inférieur de l’image. |
Notes
La valeur centrale peut ne pas fonctionner sur tous les navigateurs. Pour centrer une image, encapsulez le HtmlImage contrôle à l’intérieur des balises de paragraphe qui contiennent l’attribut align
défini sur "center"
(<p align= "center">
).