Skip to main content

ToolboxOptionsMinimizing.ScrollMode Property

Gets or sets whether items hidden in the ToolboxControl minimized state are accessed using scroll buttons (the default behavior) or using a popup panel.

Namespace: DevExpress.XtraToolbox

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(ToolboxMinimizingScrollMode.Default)]
public ToolboxMinimizingScrollMode ScrollMode { get; set; }

Property Value

Type Default Description
DevExpress.XtraToolbox.ToolboxMinimizingScrollMode Default

A DevExpress.XtraToolbox.ToolboxMinimizingScrollMode enumeration value that specifies how items hidden in the minimized state can be accessed.

Property Paths

You can access this nested property as listed below:

Object Type Path to ScrollMode
ToolboxControl
.OptionsMinimizing .ScrollMode

Remarks

By default, if the size of the ToolboxControl in the collapsed state is insufficient to display all items of the currently active group, the control displays buttons that allow an end-user to scroll the items. It is also possible, instead of the scroll buttons, to display the More items button which invokes a popup panel containing the hidden items. For this purpose, set the ScrollMode property to DropDown. To specify an icon for the More items button, use the ToolboxOptionsView.MoreItemsButtonImage option accessible using the ToolboxControl.OptionsView property.

See Also