DayRenderEventArgs.cs 682 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Delegate: DayRenderEventArgs
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>
  8. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. namespace System.Web.UI.WebControls
  14. {
  15. public sealed class DayRenderEventArgs
  16. {
  17. private TableCell cell;
  18. private CalendarDay day;
  19. public DayRenderEventArgs(TableCell cell, CalendarDay day)
  20. {
  21. this.cell = cell;
  22. this.day = day;
  23. }
  24. public TableCell Cell
  25. {
  26. get
  27. {
  28. return cell;
  29. }
  30. }
  31. public CalendarDay Day
  32. {
  33. get
  34. {
  35. return day;
  36. }
  37. }
  38. }
  39. }