ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.Rdl.Tools Namespace / ReportExtensions Class / SaveRdl Method
A GrapeCity.ActiveReports.PageReportModel.Report object to save for.
A System.Xml.XmlWriter object to use for saving the report.
A GrapeCity.ActiveReports.ResourceLocator object used to locate the resource.
A System.Boolean value indicating whether the snapshot filtering is applied. Default is false.

In This Topic
    SaveRdl Method
    In This Topic
    Saves the report as RDL (Report Definition Language) using the specified XML writer.
    Syntax
    'Declaration
     
    Public Shared Sub SaveRdl( _
       ByVal report As Report, _
       ByVal writer As XmlWriter, _
       ByVal resourceLocator As ResourceLocator, _
       Optional ByVal isSnapShotFilter As Boolean _
    ) 
    public static void SaveRdl( 
       Report report,
       XmlWriter writer,
       ResourceLocator resourceLocator,
       bool isSnapShotFilter
    )

    Parameters

    report
    A GrapeCity.ActiveReports.PageReportModel.Report object to save for.
    writer
    A System.Xml.XmlWriter object to use for saving the report.
    resourceLocator
    A GrapeCity.ActiveReports.ResourceLocator object used to locate the resource.
    isSnapShotFilter
    A System.Boolean value indicating whether the snapshot filtering is applied. Default is false.
    Exceptions
    ExceptionDescription
    Throws if writer is null.
    Remarks
    This method should not be used directly in application code. It is designed for internal operations within the product libraries and may change or be removed in future versions without notice.
    See Also