Skip to main content
All docs
V25.2
  • TdxReport.Parameters Property

    Provides access to the collection of report parameters.

    Declaration

    property Parameters: TdxReportParameters read; write;

    Property Value

    Type Description
    TdxReportParameters

    A report parameter collection.

    Remarks

    The collection accessible through the Parameters property is initially empty. Call the LoadParametersFromReport procedure to populate the collection with report parameters stored in the report template definition.

    Note

    The Parameters property provides access to a read-only report parameter collection. Subsequent LoadParametersFromReport procedure calls update the Parameters collection.

    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