Class RVDateRange
Class used to represent a date range for filtering.
Inheritance
System.Object
RVDateRange
Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.Server.dll
Syntax
public class RVDateRange : Object
Constructors
RVDateRange()
Creates a new date range with null values for From and To properties
Declaration
public RVDateRange()
RVDateRange(Nullable<DateTime>, Nullable<DateTime>)
Creates a new date range with the specified values for From and To properties
Declaration
public RVDateRange(Nullable<DateTime> fromDate, Nullable<DateTime> toDate)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.DateTime> | fromDate | The beginning of the range |
System.Nullable<System.DateTime> | toDate | The end of the range |
Properties
From
The beginning of the range.
Declaration
public Nullable<DateTime> From { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The beginning of the range. |
To
The end of the range
Declaration
public Nullable<DateTime> To { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The end of the range |