Skip to main content
All docs
V26.1
  • 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

    public static TabOverflowStrategy TabOverflowStrategy { get; set; }

    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