Skip to main content
Tab

ASPxRibbon.AllowMinimize Property

Gets or sets a value specifying whether a ribbon control can be minimized.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool AllowMinimize { get; set; }

Property Value

Type Default Description
Boolean true

true, to allow ribbon minimization; otherwise, false.

Remarks

An ASPxRibbon control can be minimized using the minimize button, or programmatically using the client-side ASPxClientRibbon.SetMinimized method or server-side ASPxRibbon.Minimized property. Set the AllowMinimize property to false, to prohibit ribbon minimization. In this case, the minimize button is not displayed.

You can control the ribbon minimization state on the server side using the ASPxRibbon.Minimized property; on the client side using the ASPxClientRibbon.GetMinimized and ASPxClientRibbon.SetMinimized methods.

See Also