DateRangeEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the DateChanged or DateSelected events of the MonthCalendar control.
- C#
- VB.NET
public class DateRangeEventArgs : EventArgs
Public Class DateRangeEventArgs
Inherits EventArgs
Constructors
DateRangeEventArgs(start, end)
Initializes a new instance of the DateRangeEventArgs class.
| Name | Type | Description |
|---|---|---|
| start | DateTime | The first date/time value in the range. |
| end | DateTime | The last date/time value in the range. |
DateRangeEventArgs(range)
Initializes a new instance of the DateRangeEventArgs class.
| Name | Type | Description |
|---|---|---|
| range | SelectionRange | The first and last date/time value in the range. |
Properties
End
DateTime: Returns the last date/time value in the range that the user has selected.
Start
DateTime: Returns the first date/time value in the range that the user has selected.
Used By
| Name | Description |
|---|---|
| DateRangeEventHandler | Represents the method that will handle the DateChanged or DateSelected event of a MonthCalendar. |