ActiveReports 8
ReportDesigner Property
See Also  Example
GrapeCity.ActiveReports.Design.Win.v8 Assembly > GrapeCity.ActiveReports.Design.ReportExplorer Namespace > ReportExplorer Class : ReportDesigner Property

Glossary Item Box

Binds the ReportExplorer control to the End-User Report Designer control.

Syntax

Visual Basic (Declaration) 
Public Property ReportDesigner As Designer
C# 
public Designer ReportDesigner {get; set;}

Property Value

A Designer object.

Example

C#Copy Code
private void Form1_Load(object sender, System.EventArgs e)
{
    this.reportExplorer1.ReportDesigner = this.designer1;
}
Visual BasicCopy Code
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Me.ReportExplorer1.ReportDesigner = Me.Designer1
End Sub

Requirements

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

See Also