Skip to main content
A newer version of this page is available. .

WebDocumentViewerSettings.SettingsTabPanel Property

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

Namespace: DevExpress.Web.Mvc

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

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