| Package | com.esri.bacore |
| Class | public class ReportOptions |
| Inheritance | ReportOptions Object |
| Implements | IJsonObject |
The report header property is optional.
The report format property is required.
The templateName is required in summary reports.
See also
| Property | Defined By | ||
|---|---|---|---|
| format : String
Report format (required). | ReportOptions | ||
| header : BAReportHeader
Custom report header parameters (optional). | ReportOptions | ||
| templateName : String
Report template name. | ReportOptions | ||
| Method | Defined By | ||
|---|---|---|---|
ReportOptions(format:String = null, templateName:String = null, header:BAReportHeader = null)
Creates a new instance of the ReportOptions object. | ReportOptions | ||
| format | property |
format:StringReport format (required).
public function get format():String public function set format(value:String):void| header | property |
header:BAReportHeaderCustom report header parameters (optional).
public function get header():BAReportHeader public function set header(value:BAReportHeader):void| templateName | property |
templateName:StringReport template name. The template name is used in summary reports only. It should be a valid report name returned by a Get Report Templates task.
public function get templateName():String public function set templateName(value:String):voidSee also
| ReportOptions | () | Constructor |
public function ReportOptions(format:String = null, templateName:String = null, header:BAReportHeader = null)Creates a new instance of the ReportOptions object.
Parametersformat:String (default = null) — The report format.
| |
templateName:String (default = null) — The report template name.
| |
header:BAReportHeader (default = null) — The report header. Allows a customization of report header parameters.
|