OnTime Extension SDK Documentation
OnTime.Extensions.SDK Namespace / Filter.Range Class / Filter.Range Constructor / Filter.Range Constructor(OrderColumn,Object,Object,Boolean,Boolean)
Determines the specific database column that this Filter is applied to.
Determines the inclusive lower-bound value to filter the specified Column by.
Determines the inclusive upper-bound value to filter the specified Column by.



In This Topic
    Filter.Range Constructor(OrderColumn,Object,Object,Boolean,Boolean)
    In This Topic
    Initializes an Filter.Range filter using the given minValue and maxValue.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal column As Schema.OrderColumn, _
       ByVal minValue As Object, _
       ByVal maxValue As Object, _
       Optional ByVal includeMin As Boolean, _
       Optional ByVal includeMax As Boolean _
    )
    'Usage
     
    
    Dim column As Schema.OrderColumn
    Dim minValue As Object
    Dim maxValue As Object
    Dim includeMin As Boolean
    Dim includeMax As Boolean
     
    Dim instance As New Filter.Range(column, minValue, maxValue, includeMin, includeMax)

    Parameters

    column
    Determines the specific database column that this Filter is applied to.
    minValue
    Determines the inclusive lower-bound value to filter the specified Column by.
    maxValue
    Determines the inclusive upper-bound value to filter the specified Column by.
    includeMin
    includeMax
    Requirements

    Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11, Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022

    See Also