TabOverflowStrategy Enum
Lists values that specify how to handle overflowing tabs.
Namespace: DevExpress.ExpressApp.Blazor
Assembly: DevExpress.ExpressApp.Blazor.v26.1.dll
Declaration
Members
| Name | Description |
|---|---|
NoLimit
|
Do not limit the number of tabs. |
BlockNewTab
|
Prevent a tab from opening and notify the user to close tabs manually when the tab count reaches MaxTabLimit. |
UnloadLeastRecentTab
|
Unload the content of the least recently used tab when the tab count exceeds the MaxTabLimit. The tab remains in the UI, but its content is unloaded from memory to save resources. |
CloseLeastRecentTab
|
Close the least recently used tab when the tab count exceeds the MaxTabLimit. |
Remarks
UnloadLeastRecentTab and CloseLeastRecentTab strategies do not unload or close tabs with unsaved changes. The total tab count may temporarily exceed the limit if the oldest tabs are being modified.