ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Web Assembly / GrapeCity.ActiveReports.Web Namespace / WebViewer Class / ViewerType Property
Example

In This Topic
    ViewerType Property (WebViewer)
    In This Topic
    Determines the type of viewer that will be used to show the report in the client machine's browser.
    Syntax
    'Declaration
     
    Public Property ViewerType As ViewerType
    public ViewerType ViewerType {get; set;}
    Example
    private void cboViewerType_SelectedIndexChanged(object sender, System.EventArgs e)
    {
        // Set the Viewer Type from the dropdown list in the Viewer type property
        string selection = this.cboViewerType.Items[this.cboViewerType.SelectedIndex].Text;
        switch (selection)
        {
                    case "AcrobatReader":  //Acrobat Reader was chosen as the viewer type
                        this.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.AcrobatReader;
                        break;
                    case "HtmlViewer":  //HTML Viewer was chosen as the viewer type
                        this.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.HtmlViewer;
                        break;
                    case "RawHtml":  //Raw HTML was chosen as the viewer type
                        this.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.RawHtml;
                        break;                
        }
    }
    Private Sub cboViewerType_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cboViewerType.SelectedIndexChanged
        ' Set the Viewer Type from the dropdown list to the ActiveReports WebViewer
        Dim selection As String = Me.cboViewerType.Items(Me.cboViewerType.SelectedIndex).Text
        Select Case selection
            Case "AcrobatReader" 'Acrobat Reader was chosen as the viewer type
                Me.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.AcrobatReader
            Case "HtmlViewer" 'HTML Viewer was chosen as the viewer type
                Me.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.HtmlViewer
            Case "RawHtml" 'Raw HTML was chosen as the viewer type
                Me.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.RawHtml
        End Select
    End Sub
    See Also