Skip to main content

ToolboxOptionsMinimizing.AllowMinimizing Property

Gets or sets whether the ToolboxControl can be collapsed.

Namespace: DevExpress.XtraToolbox

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

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

Property Value

Type Default Description
Boolean true

true if ToolboxControl can be collapsed; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowMinimizing
ToolboxControl
.OptionsMinimizing .AllowMinimizing

Remarks

By default, when the AllowMinimizing property is set to true, the ToolboxControl displays the Minimize button. Clicking it, an end-user can collapse the control. In code, the current control state can be get or set using the ToolboxOptionsMinimizing.State property.

Set the AllowMinimizing property to false to prevent the ToolboxControl from being collapsed.

See Also