Skip to main content

WebDocumentViewerSettings.SettingsTabPanel Property

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

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v24.2.dll

NuGet Package: DevExpress.Web.Mvc5

#Declaration

public WebDocumentViewerTabPanelSettings SettingsTabPanel { get; }

#Property Value

Type Description
WebDocumentViewerTabPanelSettings

An object that specifies tab panel settings.

#Remarks

This property allows you to define the tab panel’s position and default width in the Web Document Viewer, as shown below:

@Html.DevExpress().WebDocumentViewer(settings => {
    settings.Name = "WebDocumentViewer1";
    settings.SettingsTabPanel.Position = DevExpress.XtraReports.Web.WebDocumentViewer.TabPanelPosition.Left;
    settings.SettingsTabPanel.Width = 400;
}).Bind(new DevExpress.XtraReports.UI.XtraReport()).GetHtml()
See Also