VIDEO_OA_paraList_getAll()

Depending on the passed parameters, the return value of this function consists of whether a list of all camera lists or all configurations with name and data point.

Synopsis

dyn_dyn_string VIDEO_OA_paraList_getAll(string mode = "cam_list");

Parameters

Parameter Description
mode

"cam_list" creates a list of all camera lists

"display_config" creates a list of all configurations

Return Value

List of all camera lists or configurations in following format: result[i][1]=data point name result[i][2]=name

Errors

Missing or wrong arguments

Description

Depending on the passed parameters, the return value of this function consists of whether a list of all camera lists or all configurations with name and data point.

EXAMPLE

main()
{
  dyn_dyn_string result;
  result = VIDEO_OA_paraList_getAll("cam_list");
  DebugN(result);
  result = VIDEO_OA_paraList_getAll("display_config");
  DebugN(result);
}

Assignment

Video functions

Availability

UI, CTRL