Izenda Logo

This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/

About

Represents a method that allows operations to be performed after executing a ReportSet and before displaying it to the screen.

C♯ Example

public override void PostExecuteReportSet(ReportSet reportSet)
{
    File.WriteAllText(string.Format("C:\\Backup\\Reports\\{0}\\{1}.xml", reportSet.ReportCategory, reportSet.ReportName), reportSet.WriteXml());
}

VB.NET Example

Public Overrides Sub PostExecuteReportSet(reportSet As ReportSet)
    File.WriteAllText(String.Format("C:\\Backup\\Reports\\{0}\\{1}.xml", reportSet.ReportCategory, reportSet.ReportName), reportSet.WriteXml())
End Sub