Skip to main content
All docs
V18.2

ASPxClientDocumentPreviewTabPanel.tabs Property

Provides access to the tabs of the panel at the right of the Document Viewer.

Namespace: DevExpress.XtraReports.Web.Scripts

Assembly: DevExpress.XtraReports.v18.2.Web.Scripts.dll

Declaration

public ASPxClientDocumentPreviewTab[] tabs { get; }

Property Value

Type Description
ASPxClientDocumentPreviewTab[]

A collection of ASPxClientDocumentPreviewTab objects.

Remarks

The panel at the right of the Document Viewer contains tabs with the Document Map, Parameters, Search Options and Export Options.

The code sample below demonstrates how to make a specific tab active.

<script type="text/javascript" id="script">
    function Init(s, e) {
        s.GetPreviewModel().tabPanel.tabs[0].active(true);
    }
</script>

<dx:ASPxReportDesigner ID="ASPxReportDesigner1" runat="server">      
    <ClientSideEvents Init="Init"/>  
</dx:ASPxReportDesigner>
See Also