| Description |
| Identifies if a parameter's value is restricted to a certain range. |
| Replacement in Object TOOLKIT: | pfcParameter::GetRestriction |
| Synopsis |
| #include <ProParameter.h> |
| ProError | ProParameterRangeGet | ( |
| ProParameter* param | |
| /*
(In) |
| The parameter. |
| */ |
| ProBoolean* has_range | |
| /*
(Out) |
| PRO_B_TRUE if the parameter is restricted by range, PRO_B_FALSE if it is not. |
| */ |
| ProParamLimit* minimum | |
| /*
(Out) |
| The minimum value for this parameter. Pass NULL if not interested in actual value. |
| */ |
| ProParamLimit* maximum | |
| /*
(Out) |
| The maximum value for this parameter. Pass NULL if not interested in actual value. |
| */ |
| ) |
| Returns |
|
|