Xceed Workbooks for .NET v3.0 Documentation
Xceed.Workbooks.NET Assembly / Xceed.Workbooks.NET Namespace / DataValidationRangeCondition Class / DataValidationRangeCondition Constructor
The RangeConditionType that will be used by the DataValidationRangeCondition.
The minimum value used for the validation.
The maximum value used for the validation.


In This Topic
    DataValidationRangeCondition Constructor
    In This Topic
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal bcType As RangeConditionType, _
       ByVal minValue As IComparable, _
       ByVal maxValue As IComparable _
    )
    'Usage
     
    
    Dim bcType As RangeConditionType
    Dim minValue As IComparable
    Dim maxValue As IComparable
     
    Dim instance As New DataValidationRangeCondition(bcType, minValue, maxValue)
    public DataValidationRangeCondition( 
       RangeConditionType bcType,
       IComparable minValue,
       IComparable maxValue
    )

    Parameters

    bcType
    The RangeConditionType that will be used by the DataValidationRangeCondition.
    minValue
    The minimum value used for the validation.
    maxValue
    The maximum value used for the validation.
    Requirements

    Target Platforms: Windows 11, Windows 10, 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