Important: The information in this document is obsolete and should not be used for new development.
GetParameter
Retrieves the specified parameter from this parameter set.
ODBoolean GetParameter (in ParameterKey key, out void* param);
key
- The name of the parameter to retrieve.
param
- A pointer to the parameter.
- return value
kODTrue
if the parameter is in the set; otherwise,kODFalse
.DISCUSSION
You call this method to retrieve a parameter by name from aParameterSet
object. If this method returnskODFalse
, the value ofparam
is undefined.SEE ALSO
TheParameterKey
type (page 171).
TheExtractParameter
method (page 393).
ThePutParameter
method (page 397).
TheRemoveParameter
method (page 398).