Constructs a Report object.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public Report(
string id,
string name,
string key,
string url,
string parameters,
string mapper,
ReportAttrs attributes,
string description,
string module,
ReportTypes reportType
)
Public Sub New (
id As String,
name As String,
key As String,
url As String,
parameters As String,
mapper As String,
attributes As ReportAttrs,
description As String,
module As String,
reportType As ReportTypes
)
Parameters
- id
- Type: SystemString
The report ID. - name
- Type: SystemString
The name of the report. - key
- Type: SystemString
The unique name for the report. - url
- Type: SystemString
The url used to run the report. If omitted, the application 'ReportURL' property will be used. - parameters
- Type: SystemString
Parameters to be added to the report url (after being resolved for embedded functions). - mapper
- Type: SystemString
The mapper used by the report and used to filter the report. - attributes
- Type: NetQuarryReportAttrs
Report attributes. - description
- Type: SystemString
The (unlocalized) description of the report. - module
- Type: SystemString
The module to which the report belongs. - reportType
- Type: NetQuarryReportTypes
The type of report (from the report_type picklist).
See Also