WebDocumentViewerBuilder.TabPanelSettings(Action<TabPanelSettings>) Method
In This Article
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
public WebDocumentViewerBuilder TabPanelSettings(
Action<TabPanelSettings> configure
)
#Parameters
Name | Type | Description |
---|---|---|
configure | Action<Tab |
A delegate method that allows you to specify tab panel settings that are exposed by the Tab |
#Returns
Type | Description |
---|---|
Web |
A Web |
#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