CheckedBoundsValidationRuleTValue Constructor  | 
  
    Namespace: 
   Dundas.BI.Configuration
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic CheckedBoundsValidationRule(
	TValue? minValue,
	TValue? maxValue
)
Public Sub New ( 
	minValue As TValue?,
	maxValue As TValue?
)
public:
CheckedBoundsValidationRule(
	Nullable<TValue> minValue, 
	Nullable<TValue> maxValue
)
new : 
        minValue : Nullable<'TValue> * 
        maxValue : Nullable<'TValue> -> CheckedBoundsValidationRuleParameters
- minValue
 - Type: SystemNullableTValue
The minimum value, or  if there is no minimum. - maxValue
 - Type: SystemNullableTValue
The maximum value, or  if there is no maximum. 
Exceptions
See Also