Class RVDateRange
Class used to represent a date range for filtering.
Inheritance
System.Object
RVDateRange
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class RVDateRange
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(DateTime? fromDate, 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 DateTime? From { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The beginning of the range. |
To
The end of the range
Declaration
public DateTime? To { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The end of the range |