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

This method allows customization of how forms associated with reports are deleted when deleting a report.

C# Example

public override void DeleteTemplate(string fullReportSetName)
{
    string customTemplatesPath = string.Format("C:\\ReportForms\\{0}", fullReportSetName);
    if (File.Exists(customTemplatesPath))
        File.Delete(customTemplatesPath);
}

VB.NET Example

Public Overrides Sub DeleteTemplate(fullReportSetName As String)
    Dim customTemplatesPath As String = String.Format("C:\\ReportForms\\{0}", fullReportSetName)
    If File.Exists(customTemplatesPath) Then
        File.Delete(customTemplatesPath)
    End If
End Sub