BlazorMdiShowViewStrategy.TabOverflowStrategy Property
Specifies how to handle overflowing tabs when the number of tabs reaches MaxTabLimit.
Namespace: DevExpress.ExpressApp.Blazor
Assembly: DevExpress.ExpressApp.Blazor.v26.1.dll
Declaration
Property Value
| Type | Default | Description |
|---|---|---|
| TabOverflowStrategy | BlockNewTab | The tab overflow strategy. |
Remarks
You can specify the TabOverflowStrategy property as follows:
public static int Main(string[] args) {
BlazorMdiShowViewStrategy.MaxTabLimit = 5;
BlazorMdiShowViewStrategy.TabOverflowStrategy = TabOverflowStrategy.CloseLeastRecentTab;
// ...
See Also