{
  "synLogic": "char* $ret \u003d $api($1, $2);",
  "help": "The ns_paramarr_idx returns the value of the parameter at a specified location in a parameter array.",
  "notes": "If the parameter does not exist, the return value is the concatenation of \"{\", paramArrayName, \"_\", index, and \"}\", for example, \"{myParam_4}\"",
  "returns": " Returns the value of the parameter at a specified location in a parameter array",
  "arguments": "",
  "parameterization": "Standard parameterization is not available for this api",
  "component": [
    {
      "id": "$1",
      "type": "TextField",
      "label": "Parameter Array Name",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter the Parameter Array  Name",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
      "validate": {
        "inputType": "Text",
        "disabled": false,
        "required": true,
        "min": 0,
        "max": 0,
        "method": "isValidVar(arg)"
      }
    },
    {
      "id": "$2",
      "type": "TextField",
      "label": "Parameter index",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter the index",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
      "validate": {
        "inputType": "Number",
        "disabled": false,
        "required": true,
        "min": 0,
        "max": 2147483647
      }
    },
    {
      "id": "$ret",
      "type": "TextField",
      "label": "Return Variable",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
	  "title": "First character must be Alpha.\r\nOther characters are Alpha, Numeric or Underscore",
      "validate": {
        "inputType": "Text",
        "disabled": false,
		"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,63}$",
        "required": false,
        "min": 0,
        "max": 0,
        "method": "isValidVar(arg)"
      }
    }
  ],
  "name": "ns_paramarr_idx",
  "syntax": "char* ns_paramarr_idx(const char * paramArrayName, unsigned int index)",
  "javaSyntax": "String ns_paramarr_idx(String paramArrayName,int index)",
  "jsSyntax": "ns_paramarr_idx(paramArrayName: string, index: number)",
  "cEx": "flow()\n{\n  int arrSize;\n  int ord;\n  char * FlightVal;\n  for (ord\u003d1; ord \u003c\u003d arrSize; ++ord) {\n    ns_save_string (ns_paramarr_idx(\"outFlightVal\", ord), \"flighVal\");\n  }\n}",
  "javaEx": "public class flow implements NsFlow {\n  int arrSize;\n  int ord;\n  String FlightVal;\n  for (ord\u003d1; ord \u003c\u003d arrSize; ++ord) {\n    nsApi.ns_save_string (nsApi.ns_paramarr_idx(\"outFlightVal\", ord), \"flighVal\");\n  }\n}",
  "jsEx": "  let arrSize;\n  let ord;\n  let FlightVal;\n  for (ord\u003d1; ord \u003c\u003d arrSize; ++ord) {\n    nsApi.ns_save_string (nsApi.ns_paramarr_idx(\"outFlightVal\", ord), \"flighVal\");\n  }",
  "insertStrC": "ns_paramarr_idx(const char * paramArrayName, unsigned int index);",
  "insertStrJava": "ns_paramarr_idx(String paramArrayName,  int index);",
  "insertStrJs": "ns_paramarr_idx(paramArrayName: string, index: number);",
  "description": "The ns_paramarr_idx returns the value of the parameter at a specified location in a parameter array."
}