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

    Provides access to the collection of dashboard parameters.

    Declaration

    property Parameters: TdxDashboardParameters read; write;

    Property Value

    Type Description
    TdxDashboardParameters

    A dashboard parameter collection.

    Remarks

    The collection accessible through the Parameters property is initially empty. Call the LoadParametersFromDashboard procedure to populate the collection with dashboard parameters stored within the dashboard layout definition.

    Note

    The Parameters property provides access to a read-only dashboard parameter collection. Subsequent LoadParametersFromDashboard 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.

    Tip

    To apply any parameter value changes to the dashboard state and refresh the control, call the ApplyParametersToState procedure.

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

    See Also