Skip to main content
All docs
V25.2
  • TdxBackendCustomParameter.Values Property

    Provides access to parameter values.

    Declaration

    property Values: TdxBackendParameterValues read; write;

    Property Value

    Type Description
    TdxBackendParameterValues

    A collection of backend client parameter values.

    Remarks

    Use the Values property to manage parameter values. If the IsMultiValueParameter property is set to False (default), only the first parameter value is used.

    Parameter Data Type

    Each parameter value is stored as a Variant value. You can use the DataType property to identify the actual parameter type defined in the UI. Different data types use different editor types in the UI’s Parameters panel.

    Available Options

    Call Values.Add and Values.Delete methods to manage parameter values in the collection when the IsMultiValueParameter property is set to True. The Values.Items property provides indexed access to all stored parameter values.

    Refer to the TdxBackendParameterValues class description for detailed information on all available options.

    See Also