Visual Basic (Declaration) | |
---|---|
Public Class FlashViewerOptions |
C# | |
---|---|
public class FlashViewerOptions |
This code is a snippet from the Professional Edition Web Sample in the FlashViewer.aspx Page Load event.
Visual Basic | Copy Code |
---|---|
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")) |
C# | Copy Code |
---|---|
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"]); |
System.Object
GrapeCity.ActiveReports.Web.ExportOptions.FlashViewerOptions
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