| Visual Basic (Declaration) | |
|---|---|
Public Property ShowSplitter As System.Boolean | |
| C# | |
|---|---|
public System.bool ShowSplitter {get; set;} | |
Property Value
A Boolean value. True by default.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.
| C# | Copy Code |
|---|---|
WebViewer.FlashViewerOptions.ShowSplitter = GetBooleanValueFromForm(Request.Form["ShowSplitter"]); | |
| Visual Basic | Copy Code |
|---|---|
WebViewer.FlashViewerOptions.ShowSplitter = GetBooleanValueFromForm(Request.Form("ShowSplitter")) | |