ActiveReports 6 Online Help
Report Property (Designer)
Example 

Returns a reference to the designer's report object.
Syntax
'Declaration
 
Public Property Report As ActiveReport
public ActiveReport Report {get; set;}

Property Value

ActiveReport

Remarks
This report object is used to gain access to the layout and controls properties.
Example
public object NewReport(string name)
{    
    try
    {
        this.ardMain.NewReport();
        this.ardMain.Report.Document.Name = name;
        return this.ardMain.Report;
    }
    catch(DataDynamics.ActiveReports.ReportException)
    {
        MessageBox.Show("Error occurred while creating new report", "Error in Diamond Reports");
        return null;
    }
    
}
Public Function NewReport(ByVal name As String) As Object Implements IPlugInHost.NewReport
    Try
        Me.ardMain.NewReport()
        Me.ardMain.Report.Document.Name = name
        Return Me.ardMain.Report
    Catch ex As DataDynamics.ActiveReports.ReportException
        MessageBox.Show("Error occurred while creating new report", "Error in Diamond Reports")
        Return Nothing
    End Try
End Function
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

Reference

Designer Class
Designer Members

Send Feedback