ActiveReports Developer 7
ShowSplitter Property
See Also  Example
GrapeCity.ActiveReports.Web.v7 Assembly > GrapeCity.ActiveReports.Web.ExportOptions Namespace > FlashViewerOptions Class : ShowSplitter Property

Glossary Item Box

Gets or sets a value indicating whether to include a splitter that allows the user to display the report in two sections.

Syntax

Visual Basic (Declaration) 
Public Property ShowSplitter As System.Boolean
C# 
public System.bool ShowSplitter {get; set;}

Property Value

A Boolean value. True by default.

Remarks

When the FlashViewer is split in two sections, the user can compare two different sections of the same report in the top and bottom panes.

Example

C#Copy Code
WebViewer.FlashViewerOptions.ShowSplitter = GetBooleanValueFromForm(Request.Form["ShowSplitter"]);
Visual BasicCopy Code
WebViewer.FlashViewerOptions.ShowSplitter = GetBooleanValueFromForm(Request.Form("ShowSplitter"))

See Also