ActiveReports 12
FlashViewerOptions Class
Members  Example 

GrapeCity.ActiveReports.Web.v12 Assembly > GrapeCity.ActiveReports.Web.ExportOptions Namespace : FlashViewerOptions Class
Allows you to set options for the FlashViewer ViewerType of the WebViewer control.
Object Model
FlashViewerOptions 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.TocPanelOptions.ShowThumbnails = GetBooleanValueFromForm(Request.Form("ShowThumbnails"))
WebViewer.FlashViewerOptions.TocPanelOptions.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.TocPanelOptions.ShowThumbnails = GetBooleanValueFromForm(Request.Form["ShowThumbnails"]);
WebViewer.FlashViewerOptions.TocPanelOptions.ShowToc = GetBooleanValueFromForm(Request.Form["ShowTOC"]);
Inheritance Hierarchy

System.Object
   GrapeCity.ActiveReports.Web.ExportOptions.FlashViewerOptions

See Also

Reference

FlashViewerOptions Members
GrapeCity.ActiveReports.Web.ExportOptions Namespace