ReportBuilder.Put
Syntax variant: Output to a spreadsheet document
Syntax:
Parameters:
<SpreadsheetDocument> (optional)
The name of "Spreadsheet document" control which will be used for output. If this parameter is not specified, a new spreadsheet document will be created.
Syntax variant: Output to a chart
Syntax:
Parameters:
<Chart> (required)
The name of the "Chart" control which will be used for output.
<Resource> (optional)
The name of resource which will be output to the chart.
Description:
Availability:
Note:
Example:
// Output to the spreadsheet document ReportBuilder.Put(DocResult); // Ouput ot the chart Chart.Clear(); ReportBuilder.Put(Chart, DeducedParameterName); |