Range Restriction
The PARAMSELECT_RANGE type of parameter restriction is represented by the interface pfcParameterRange. It is a child of the pfcParameterRestriction interface.
Properties Introduced:
The property
pfcParameterRange.Maximum returns the maximum value limit for the parameter in the form of the
pfcParameterLimit object.
The property
pfcParameterRange.Minimum returns the minimum value limit for the parameter in the form of the
pfcParameterLimit object.
The property
pfcParameterLimit.Type returns the the types of parameter limits using the enumerated data type
pfcParameterLimitType . The parameter limits are of the following types:
• PARAMLIMIT_LESS_THAN—Specifies that the parameter must be less than the indicated value.
• PARAMLIMIT_LESS_THAN_OR_EQUAL—Specifies that the parameter must be less than or equal to the indicated value.
• PARAMLIMIT_GREATER_THAN—Specifies that the parameter must be greater than the indicated value.
• PARAMLIMIT_GREATER_THAN_OR_EQUAL—Specifies that the parameter must be greater than or equal to the indicated value.
The property
pfcParameterLimit.Value returns the boundary value of the parameter limit in the form of the
pfcParamValue object.