ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Subreport Class / MergeTransactions Property
Example

In This Topic
    MergeTransactions Property
    In This Topic
    Gets or sets a value indicating whether the transactions in the subreport are merged with the parent report.
    Syntax
    'Declaration
     
    Public Property MergeTransactions As Boolean
    public bool MergeTransactions {get; set;}

    Property Value

    A System.Boolean value where true indicates that subreport transactions merge with parent report transactions if using the same connection; otherwise false. Default is false.
    Example
    Subreport subreport = new Subreport();
    subreport.MergeTransactions = true;
    See Also