interface PC.IFpRange {
// Properties
${minValue}: number;
${maxValue}: number;
${isDouble}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
minValue: number;
// This property is not available in managed environment
// This property is not available in native environment
Minimum range value.
maxValue: number;
// This property is not available in managed environment
// This property is not available in native environment
Maximum range value.
isDouble?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
If false or omitted, this range is single-precision floating-point range, otherwise it is double-precision.