HorizontalAlign Enum
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee geeft u de horizontale uitlijning van items in een container.
public enum class HorizontalAlign
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.HorizontalAlignConverter))]
public enum HorizontalAlign
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.HorizontalAlignConverter))>]
type HorizontalAlign =
Public Enum HorizontalAlign
- Overname
- Kenmerken
Velden
| Name | Waarde | Description |
|---|---|---|
| NotSet | 0 | De horizontale uitlijning is niet ingesteld. |
| Left | 1 | De inhoud van een container wordt uitgevuld. |
| Center | 2 | De inhoud van een container is gecentreerd. |
| Right | 3 | De inhoud van een container is juist gerechtvaardigd. |
| Justify | 4 | De inhoud van een container wordt gelijkmatig verdeeld en uitgelijnd met zowel de linker- als de rechtermarge. |
Voorbeelden
In het volgende voorbeeld ziet u hoe het instellen van de HorizontalAlign eigenschap van een Panel besturingselement de horizontale uitlijning wijzigt voor de tekst van een Label besturingselement dat is opgenomen in het Panel besturingselement.
<%@ Page Language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void HorizontalAlignList_SelectedIndexChanged(object sender, EventArgs e)
{
switch (HorizontalAlignList.SelectedValue)
{
case "Left":
Panel1.HorizontalAlign = HorizontalAlign.Left;
break;
case "Center":
Panel1.HorizontalAlign = HorizontalAlign.Center;
break;
case "Justify":
Panel1.HorizontalAlign = HorizontalAlign.Justify;
break;
default:
Panel1.HorizontalAlign = HorizontalAlign.Right;
break;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HorizontalAlign Example</title>
</head>
<body>
<h3>HorizontalAlign Example</h3>
<form id="form1" runat="server">
<asp:Panel id="Panel1" Height="100" Width="200" BackColor="Gainsboro"
Wrap="True" HorizontalAlign="Left" runat="server">
<asp:Label ID="Label1" runat="server" Text="This panel contains a Label control.">
</asp:Label>
</asp:Panel>
<br />
<asp:Label ID="Label2" runat="server" Text="Horizontal Alignment:"></asp:Label>
<asp:DropDownList ID="HorizontalAlignList" runat="server" AutoPostBack="True"
OnSelectedIndexChanged="HorizontalAlignList_SelectedIndexChanged">
<asp:ListItem Selected="True">Left</asp:ListItem>
<asp:ListItem>Center</asp:ListItem>
<asp:ListItem>Right</asp:ListItem>
<asp:ListItem>Justify</asp:ListItem>
</asp:DropDownList>
</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">
<script runat="server">
Protected Sub HorizontalAlignList_SelectedIndexChanged()
Select Case HorizontalAlignList.SelectedValue
Case "Left"
Panel1.HorizontalAlign = HorizontalAlign.Left
Case "Center"
Panel1.HorizontalAlign = HorizontalAlign.Center
Case "Justify"
Panel1.HorizontalAlign = HorizontalAlign.Justify
Case Else
Panel1.HorizontalAlign = HorizontalAlign.Right
End Select
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HorizontalAlign Example</title>
</head>
<body>
<h3>HorizontalAlign Example</h3>
<form id="form1" runat="server">
<asp:Panel id="Panel1" Height="100" Width="200" BackColor="Gainsboro"
Wrap="True" HorizontalAlign="Left" runat="server">
<asp:Label ID="Label1" runat="server" Text="This panel contains a Label control.">
</asp:Label>
</asp:Panel>
<br />
<asp:Label ID="Label2" runat="server" Text="Horizontal Alignment:"></asp:Label>
<asp:DropDownList ID="HorizontalAlignList" runat="server" AutoPostBack="True"
onselectedindexchanged="HorizontalAlignList_SelectedIndexChanged">
<asp:ListItem Selected="True">Left</asp:ListItem>
<asp:ListItem>Center</asp:ListItem>
<asp:ListItem>Right</asp:ListItem>
<asp:ListItem>Justify</asp:ListItem>
</asp:DropDownList>
</form>
</body>
</html>
Opmerkingen
De HorizontalAlign opsomming vertegenwoordigt de horizontale uitlijningsopties voor items in een container, zoals een TableCell.