ActiveReports Developer 7
ReportDesigner Property
See Also  Example
GrapeCity.ActiveReports.Design.Win.v7 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

See Also