TdxReport.Parameters Property
Provides access to the collection of report parameters.
Declaration
property Parameters: TdxReportParameters read;
Property Value
| Type | Description |
|---|---|
| TdxReportParameters | A report parameter collection. |
Remarks
The collection accessible through the Parameters property is populated and updated automatically from the current report template definition.
Note
The Parameters property provides access to a read-only report parameter collection. If the list of parameters changes within the report template definition, the collection is updated automatically the next time you access it in code.
Available Options
You can use the ParamByName property to access a stored parameter by name. In addition, you can use the Parameters.Items property to access all parameters stored in the collection.
Refer to the TdxReportParameters class description for detailed information on all available options.
See Also