Freigeben über


PanelStyle.HorizontalAlign Eigenschaft

Definition

Ruft die horizontale Ausrichtung des Inhalts in einem Auswahlbereich-Steuerelement ab oder legt diese fest.

public:
 virtual property System::Web::UI::WebControls::HorizontalAlign HorizontalAlign { System::Web::UI::WebControls::HorizontalAlign get(); void set(System::Web::UI::WebControls::HorizontalAlign value); };
public virtual System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { get; set; }
member this.HorizontalAlign : System.Web.UI.WebControls.HorizontalAlign with get, set
Public Overridable Property HorizontalAlign As HorizontalAlign

Eigenschaftswert

HorizontalAlign

Einer der HorizontalAlign-Werte. Der Standardwert ist NotSet.

Ausnahmen

Die horizontale Ausrichtung gehört nicht zu den HorizontalAlign-Werten.

Beispiele

Im folgenden Codebeispiel werden die HorizontalAlign Eigenschaften von zwei Panelsteuerelementen Panel1 und Panel2auf den HorizontalAlign.Center Enumerationswert festgelegt. Eine ASPX-Datei, die zum Ausführen des Beispiels verwendet werden kann, finden Sie im PanelStyle Thema.

public partial class PanelStylecs_aspx : Page
{
    void Page_Load(object sender, EventArgs e)
    {
        StateBag panelState = new StateBag();
        PanelStyle myPanelStyle = new PanelStyle(panelState);
        
        // Set the properties of the PanelStyle class.
        myPanelStyle.HorizontalAlign = HorizontalAlign.Center;
        myPanelStyle.ScrollBars = ScrollBars.Both;
        myPanelStyle.Wrap = false;
        myPanelStyle.Direction = ContentDirection.LeftToRight;
        myPanelStyle.BackImageUrl = @"~\images\picture.jpg";

        // Use the ApplyStyle method of the Panel control to apply
        // the settings from the myPanelStyle object.
        Panel1.ApplyStyle(myPanelStyle);
        Panel2.ApplyStyle(myPanelStyle); 
    }
}
Partial Class PanelStylevb_aspx
    Inherits Page

    Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

        Dim panelState As StateBag = New StateBag()
        Dim myPanelStyle As PanelStyle = New PanelStyle(panelState)

        ' Set the properties of the PanelStyle class.
        myPanelStyle.HorizontalAlign = HorizontalAlign.Center
        myPanelStyle.ScrollBars = ScrollBars.Both
        myPanelStyle.Wrap = False
        myPanelStyle.Direction = ContentDirection.LeftToRight
        myPanelStyle.BackImageUrl = "~\images\picture.jpg"

        ' Use the ApplyStyle method of the Panel control to apply
        ' the settings from the myPanelStyle object.
        Panel1.ApplyStyle(myPanelStyle)
        Panel2.ApplyStyle(myPanelStyle)
        
    End Sub

End Class

Hinweise

Die HorizontalAlign Eigenschaft gibt die horizontale Ausrichtung des Inhalts innerhalb eines Panelsteuerelements an.

Die HorizontalAlign Eigenschaft wird mithilfe eines der HorizontalAlign Aufzählungswerte festgelegt. In der folgenden Tabelle sind die möglichen Werte aufgeführt.

Wert BESCHREIBUNG
NotSet Die horizontale Ausrichtung ist nicht festgelegt.
Left Der Inhalt des Bereichs ist linksbündig ausgerichtet.
Center Der Inhalt des Bereichs wird zentriert.
Right Der Inhalt des Bereichs ist rechtsbündig ausgerichtet.

Hinweis

. Wenn die Eigenschaft auf", aber die HorizontalAlign Eigenschaft im Steuerelement festgelegt NotSet ist, das das Panelsteuerelement enthält, wird die Einstellung vom enthaltenen Steuerelement geerbt.

Gilt für

Siehe auch