Class DateTimeOffsetRange
Represents a date time offset range that has start and end dates.
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Calendar
Assembly: Syncfusion.Calendar.WinUI.dll
Syntax
public class DateTimeOffsetRange : NotificationObject, INotifyPropertyChanged
Constructors
DateTimeOffsetRange(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Initializes a new instance of the DateTimeOffsetRange class.
Declaration
public DateTimeOffsetRange(Nullable<DateTimeOffset> startdate, Nullable<DateTimeOffset> enddate)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.DateTimeOffset> | startdate | Start date. |
System.Nullable<System.DateTimeOffset> | enddate | End date. |
Properties
EndDate
Gets or sets the end date of the range.
Declaration
public Nullable<DateTimeOffset> EndDate { get; set; }
Property Value
Type |
---|
System.Nullable<System.DateTimeOffset> |
StartDate
Gets or sets the start date of the range.
Declaration
public Nullable<DateTimeOffset> StartDate { get; set; }
Property Value
Type |
---|
System.Nullable<System.DateTimeOffset> |
Implements
System.ComponentModel.INotifyPropertyChanged