Category Parameters and relations, Object ProParameter

Function ProParameterIsModified


Description
Determines whether the specified parameter has been modified.

NOTE:

A parameter is said to be "modified" if the value has been changed but the parameter's owner has not yet been regenerated. This function can succeed only for solid models.

Replacement in Object TOOLKIT: pfcBaseParameter::IsModified
Synopsis
#include <ProParameter.h>
ProErrorProParameterIsModified(
ProParameter* param
/* (In)
The handle to the parameter to query.
*/
ProBoolean* r_is_modified
/* (Out)
This is PRO_B_TRUE if the specified parameter is modified.
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully retrieved the information.
PRO_TK_E_NOT_FOUNDThe owner was not found.
PRO_TK_GENERAL_ERRORThe parameter was not found, or the function could not perform the action.

Manual References:

  1. Core: Parameters: Accessing Parameters
  2. Core: Parameters: Accessing Parameters

Sample Code References:

  1. pt_examples ( TestParams.c )