Category Parameters and relations, Object ProParamvalue

Function ProParamvalueValueGet


Description
Retrieves the value field of a ProParamvalue data structure.
Synopsis
#include <ProParamval.h>
ProErrorProParamvalueValueGet(
ProParamvalue* p_handle
/* (In)
The pointer to the ProParamvalue to be queried.
*/
ProParamvalueType type
/* (In)
The type of data stored in the ProParamvalue. You retrieve this information by calling the function ProParamvalueTypeGet().
*/
void* r_value
/* (Out)
The pointer to the memory in which the value should be placed. The r_value should point to an int, double, short, or ProLine, as appropriate for the type specified.
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully retrieved the information.
PRO_TK_BAD_INPUTSOne or more of the input arguments are invalid.
See Also
ProParamvalueTypeGet

Manual References:

  1. Core: Parameters: Parameter Values
  2. Core: Parameters: Parameter Values

Sample Code References:

  1. pt_af_examples ( PTAFExampleUtils.c )
  2. pt_af_examples ( PTAFExampleUtils.c )
  3. pt_examples ( TestRoute.c )
  4. pt_examples ( TestParams.c )
  5. pt_mfg_proctable ( PTMfgProcTable.c )
  6. pt_mfg_proctable ( PTMfgProcTable.c )
  7. pt_mfg_proctable ( PTMfgProcTable.c )
  8. pt_udf_examples ( PTUDFExParamInfo.c )
  9. pt_udf_examples ( PTUDFExParamInfo.c )
  10. pt_udf_examples ( PTUDFExParamInfo.c )
  11. pt_udf_examples ( PTUDFExParamInfo.c )
  12. pt_udf_examples ( PTUDFExParamInfo.c )
  13. pt_userguide ( UgFamtabUse.c )