You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -322,7 +322,7 @@ Member functions used by an app:
322
322
getSpec( ) | returns the raw Spec object for this implementation.
323
323
isParameter(name) | returns True if parameter exists.
324
324
***Getters***: <br/> getParameterBool(name)<br/> getParameterByte(name)<br/> getParameterInt32(name)<br/> getParameterUInt32(name)<br/> getParameterInt64(name)<br/> getParameterUInt64(name)<br/> getParameterReal32(name)<br/> getParameterReal64(name)<br/> getParameterString(name) for C++<br/><br/> getParameter(name) for Python <br/><br/> getParameters() <br/> getParameterJSON(name) for both C++ and Python.<br/><br/> getParameterArray(name, array)<br/> getParameterArrayCount(name) for Arrays. | returns the value of the specified parameter from this region.
325
-
***Setters***:<br/> setParameterBool(name, value)<br/> setParameterByte(name, value)<br/> setParameterInt32(name, value)<br/> setParameterUInt32(name, value)<br/> setParameterInt64(name, value)<br/> setParameterUInt64(name, value)<br/> setParameterReal32(name, value)<br/> setParameterReal64(name, value)<br/> setParameterString(name, value) for C++ <br/><br/> setParameter(name, value) for Python<br/><br/> setParameterJSON(name, value) for both C++ & Python<br/><br/> setParameterArray(name, array) | Sets the value on the specified parameter. The parameter must be declared with ReadWrite access mode in the Spec and the type of the parameter must match the type on the function name. setParameterJSON(name, value) can come from any type.
325
+
***Setters***:<br/> setParameterBool(name, value)<br/> setParameterByte(name, value)<br/> setParameterInt32(name, value)<br/> setParameterUInt32(name, value)<br/> setParameterInt64(name, value)<br/> setParameterUInt64(name, value)<br/> setParameterReal32(name, value)<br/> setParameterReal64(name, value)<br/> setParameterString(name, value)<br/>setParameterJSON(name, value)<br/> setParameterArray(name, array) | Sets the value on the specified parameter. The parameter must be declared with ReadWrite access mode in the Spec and the type of the parameter must match the type on the function name. setParameterJSON(name, value) can come from any type.
326
326
getInputData(input_name) | Returns an input buffer as an Array object
327
327
getOutputData(output_name) | Returns an output buffer as an Array object
328
328
executeCommand(args) | Executes a command on the region.
@@ -360,7 +360,7 @@ Gets the Spec object for a region's implementation. This is a static structure c
360
360
361
361
### Region\::getParameterArrayCount(name)
362
362
363
-
### Region\::setParameterXXX(name, value) C++ <br/> Region\::setParameter(name, value) Python
363
+
### Region\::setParameterXXX(name, value) where XXX is the type
0 commit comments