Version

RangeCondition Constructor(Object,Object,Type)

Creates a new instance of the RangeCondition class.
Syntax
'Declaration
 
Public Function New( _
   ByVal minimumValue As Object, _
   ByVal maximumValue As Object, _
   ByVal dataType As Type _
)
public RangeCondition( 
   object minimumValue,
   object maximumValue,
   Type dataType
)

Parameters

minimumValue
The minimum value of the range against which to be tested.
maximumValue
The maximum value of the range against which to be tested.
dataType
The Type to which values will be converted before determining whether the value lies within the range defined by the MinimumValue and MaximumValue properties. If null, no conversion is made prior to comparison.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also