dpGetAllDetails()

Returns all details of a config (for example, of "_lock").

Synopsis

dyn_string dpGetAllDetails(string config);

Parameters

Parameter Meaning
config Name of a config (for example, "_lock").

Return Value

The function returns a dyn_string (text array).

Error

In the event of an error, the function returns an empty dyn_string.

Description

Returns all details of a config (for example, of "_lock").

Example

main()
{
   dyn_string all;
   all = dpGetAllDetails("_lock");
   //returns all details of the config _lock
   DebugN(all);
}

Assignment

Data point function

Availability

CTRL