Skip to main content
Tab

ASPxRoundPanel.CornerRadius Property

Specifies the radius of the round panel corners.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(typeof(Unit), "")]
public Unit CornerRadius { get; set; }

Property Value

Type Default Description
Unit String.Empty

The corner radius.

Remarks

Use the CornerRadius property to specify the radius of round panel corners.

<dx:ASPxRoundPanel ID="ASPxRoundPanel1" HeaderText="ASP.NET Web Forms Controls" runat="server" 
    CornerRadius="20" Width="270">
    <PanelCollection>
        <dx:PanelContent>
            <h4>110+ UI Controls</h4>
            <br />
            With our controls for ASP.NET Web Forms you will deliver high-performance 
            line-of-business applications that meet and exceed the needs of your enterprise.
        </dx:PanelContent>
    </PanelCollection>
</dx:ASPxRoundPanel>

Round panel with the specified corner radius

See Also