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

Provides an override to the process that obtains a report ID based on the full report name including category.

C Example

public override string GetReportIDByName(string fullReportName)
{
    Dictionary<string, string> nameToIdDict = new Dictionary<string, string>();
    LoadReportIDs(nameToIdDict);
    return nameToIdDict.ContainsKey(fullReportName) ? nameToIdDict[fullReportName] : null;
}

VB.NET Example

Public Overrides Function GetReportIDByName(fullReportName As String) As String
    Dim nameToIdDict As New Dictionary(Of String, String)
    LoadReportIDs(nameToIdDict)
    Return If(nameToIdDict.ContainsKey(fullReportName), nameToIdDict(fullReportName), Nothing)
End Function