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

WebDocumentViewerBuilder.TabPanelSettings(Action<TabPanelSettings>) Method

Provides access to the Web Document Viewer‘s tab panel settings.

Namespace: DevExpress.AspNetCore.Reporting.WebDocumentViewer

Assembly: DevExpress.AspNetCore.Reporting.v24.2.dll

NuGet Package: DevExpress.AspNetCore.Reporting

#Declaration

#Parameters

Name Type Description
configure Action<TabPanelSettings>

A delegate method that allows you to specify tab panel settings that are exposed by the TabPanelSettings object, which is passed as the delegate parameter.

#Returns

Type Description
WebDocumentViewerBuilder

A WebDocumentViewerBuilder that can be used to further configure the Document Viewer.

#Remarks

The TabPanelSettings member allows you to define the tab panel’s position and default width in the Web Document Viewer.

@Html.DevExpress().WebDocumentViewer("DocumentViewer").TabPanelSettings((settings) => {
        settings.Position = "Left";
        settings.Width = 400;
    }).Height("1000px").Bind("DXWebApplication1.Reports.XtraReport.repx")
See Also