ActiveReports Developer 7
ViewerType Property
See Also  Example
GrapeCity.ActiveReports.Web.v7 Assembly > GrapeCity.ActiveReports.Web Namespace > WebViewer Class : ViewerType Property

Glossary Item Box

Determines the type of viewer that will be used to show the report in the client machine's browser.

Syntax

Visual Basic (Declaration) 
Public Property ViewerType As ViewerType
C# 
public ViewerType ViewerType {get; set;}

Example

C#Copy Code
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;
                case "FlashViewer":  //Flash Viewer was chosen as the viewer type
                    this.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.FlashViewer;
            break;
    }
}
Visual BasicCopy Code
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
        Case "FlashViewer" 'Flash Viewer was chosen as the viewer type
            Me.arvWebMain.ViewerType = GrapeCity.ActiveReports.Web.ViewerType.FlashViewer
    End Select
End Sub

See Also