ActiveReports.Viewer3 Request technical support
AllowSplitter Property
See Also  Example


Gets or sets a value that determines whether the user is allowed to split the view.

Syntax

Visual Basic (Declaration) 
Public Property AllowSplitter As Boolean
Visual Basic (Usage)Copy Code
Dim instance As ReportViewerObject
Dim value As Boolean
 
instance.AllowSplitter = value
 
value = instance.AllowSplitter
C# 
public bool AllowSplitter {get; set;}

Return Value

A Boolean value. True if the user is allowed to split the report view; otherwise, False.  The default value is True.

Example

C#Copy Code
arv.ReportViewer.AllowSplitter = false;
Visual BasicCopy Code
arv.ReportViewer.AllowSplitter = False

See Also