Class Holiday
Inheritance
System.Object
Holiday
Inherited Members
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: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public class Holiday : INotifyPropertyChanged
Constructors
Holiday()
Declaration
public Holiday()
Holiday(DateTime)
Declaration
public Holiday(DateTime date)
Parameters
System.DateTime
date
|
Holiday(DateTime, String)
Declaration
public Holiday(DateTime date, string holidayName)
Parameters
System.DateTime
date
|
System.String
holidayName
|
Holiday(DateTime, String, String)
Declaration
public Holiday(DateTime date, string holidayName, string location)
Parameters
System.DateTime
date
|
System.String
holidayName
|
System.String
location
|
Properties
Date
Date for the Holidays (time part will be ignored).
Declaration
public DateTime Date { get; set; }
Property Value
System.DateTime
|
HolidayName
Name of the Holiday
Declaration
public string HolidayName { get; set; }
Property Value
System.String
|
Location
Location of the holiday.
Declaration
public string Location { get; set; }
Property Value
System.String
|
Methods
OnPropertyChanged(String)
Declaration
public void OnPropertyChanged(string propertyName)
Parameters
System.String
propertyName
|
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Overrides
System.Object.ToString()
Events
PropertyChanged
Fires when Date or Holiday Name or Location changed.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|