Skip to main content
A newer version of this page is available. .
Tab

ASPxRoundPanel.HorizontalAlign Property

Gets or sets the horizontal alignment of a panel’s contents.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(HorizontalAlign.NotSet)]
public HorizontalAlign HorizontalAlign { get; set; }

Property Value

Type Default Description
HorizontalAlign **NotSet**

One of the HorizontalAlign enumeration values.

Example

The complete sample project is available in the DevExpress Code Central database at E143.

function OnExpandCollapseButtonClick(s, e) {
    var isVisible = ContentPanel.GetClientVisible();
    s.SetText(isVisible ? "+" : "-");
    ContentPanel.SetClientVisible(!isVisible);
}
See Also