Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IDocumentGroupDefaultProperties.CloseTabOnMiddleClick Property

Gets or sets the value that determines if tabs in the current document group will be closed on a mouse middle click.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

CloseTabOnMiddleClick CloseTabOnMiddleClick { get; set; }

#Property Value

Type Description
CloseTabOnMiddleClick

A CloseTabOnMiddleClick value that determines if tabs in the current document group will be closed on a mouse middle click.

Available values:

Name Description
Default

The default behavior. Typically, this option is the same as the CloseTabOnMiddleClick.OnMouseDown option.

OnMouseDown

Specifies that tabs will be closed on pressing the mouse middle button over a tab (before the mouse middle button is released).

OnMouseUp

Specifies that tabs will be closed on releasing the mouse middle button over a tab.

Never

Specifies that tabs will never be closed by a mouse middle click.

#Remarks

Use a View’s IDocumentGroupProperties.CloseTabOnMiddleClick property to determine if tabs in document groups will be closed on a mouse middle click. This setting is applied to all document groups by default. The CloseTabOnMiddleClick property allows you to override the CloseTabOnMiddleClick property for the current document group. To override the default setting, set the CloseTabOnMiddleClick property to any CloseTabOnMiddleClick value except Default.

See Also