Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
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 switch between supported parameter value types (that is, Variant value interpretation options). Different data types use different editor types in the Parameters panel in the UI.

    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