| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Delegate: DayRenderEventArgs
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.UI.WebControls
- {
- public sealed class DayRenderEventArgs
- {
- private TableCell cell;
- private CalendarDay day;
-
- public DayRenderEventArgs(TableCell cell, CalendarDay day)
- {
- this.cell = cell;
- this.day = day;
- }
-
- public TableCell Cell
- {
- get
- {
- return cell;
- }
- }
-
- public CalendarDay Day
- {
- get
- {
- return day;
- }
- }
- }
- }
|