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

ASPxButton.Paddings Property

Gets the button’s padding settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public Paddings Paddings { get; }

Property Value

Type Description
Paddings

A Paddings object that contains padding settings.

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