ActiveReports 6 Online Help
FlashViewerOptions Class
Members  Example 

Allows you to set options for the FlashViewer ViewerType of the WebViewer control.
Object Model
FlashViewerOptions ClassFlashViewerOptions.FlashViewerPrintOptions ClassTocPanelOptions Class
Syntax
'Declaration
 
Public Class FlashViewerOptions 
public class FlashViewerOptions 
Example
This code is a snippet from the Professional Edition Web Sample in the FlashViewer.aspx Page Load event.
WebViewer.FlashViewerOptions.ResourceLocale = Request.Form("LanguageDropDownList")
    WebViewer.FlashViewerOptions.ThemeUrl = Request.Form("ThemesDropDownList")
    WebViewer.FlashViewerOptions.ShowSplitter = GetBooleanValueFromForm(Request.Form("ShowSplitter"))
    WebViewer.FlashViewerOptions.ShowThumbnails = GetBooleanValueFromForm(Request.Form("ShowThumbnails"))
    WebViewer.FlashViewerOptions.ShowToc = GetBooleanValueFromForm(Request.Form("ShowTOC"))
WebViewer.FlashViewerOptions.ResourceLocale = Request.Form["LanguageDropDownList"];
      WebViewer.FlashViewerOptions.ThemeUrl = Request.Form["ThemesDropDownList"];
      WebViewer.FlashViewerOptions.ShowSplitter = GetBooleanValueFromForm(Request.Form["ShowSplitter"]);
      WebViewer.FlashViewerOptions.ShowThumbnails = GetBooleanValueFromForm(Request.Form["ShowThumbnails"]);
      WebViewer.FlashViewerOptions.ShowToc = GetBooleanValueFromForm(Request.Form["ShowTOC"]);
Inheritance Hierarchy

System.Object
   DataDynamics.ActiveReports.Web.FlashViewerOptions

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FlashViewerOptions Members
DataDynamics.ActiveReports.Web Namespace

Send Feedback