CalendarDay Constructor (DateTime, Boolean, Boolean, Boolean, Boolean, String^)
Initializes a new instance of the CalendarDay class.
Assembly: System.Web (in System.Web.dll)
public: CalendarDay( DateTime date, bool isWeekend, bool isToday, bool isSelected, bool isOtherMonth, String^ dayNumberText )
Parameters
- date
-
Type:
System::DateTime
A System::DateTime object that contains the date represented by an instance of this class.
- isWeekend
-
Type:
System::Boolean
true to indicate that the date represented by an instance of this class is either a Saturday or a Sunday; otherwise, false.
- isToday
-
Type:
System::Boolean
true to indicate that the date represented by an instance of this class is the current date; otherwise, false.
- isSelected
-
Type:
System::Boolean
true to indicate that the date represented by an instance of this class is selected on the Calendar control; otherwise, false.
- isOtherMonth
-
Type:
System::Boolean
true to indicate that the date represented by an instance of this class is in a month other than the displayed month on the Calendar control; otherwise, false.
- dayNumberText
-
Type:
System::String^
The day number for the date represented by this class.
Use this constructor to create and initialize a new instance of the CalendarDay class.
Note |
|---|
Although this constructor is available, an instance of the CalendarDay class is not typically created dynamically. |
The following table shows initial property values for an instance of CalendarDay.
Property | Initial Value |
|---|---|
Date | The value of the date parameter. |
DayNumberText | The value of the dayNumberText parameter. |
IsOtherMonth | The value of the isOtherMonth parameter. |
IsSelected | The value of the isSelected parameter. |
IsToday | The value of the isToday parameter. |
IsWeekend | The value of the isWeekEnd parameter. |
Available since 1.1
