DateBoldEventArgs.cs 818 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // System.Windows.Forms.DateBoldEventArgs
  3. //
  4. // Author:
  5. // stubbed out by Richard Baumann ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) Ximian, Inc., 2002
  9. //
  10. namespace System.Windows.Forms {
  11. // <summary>
  12. // This is only a template. Nothing is implemented yet.
  13. // This class is internal to the .NET framework.
  14. // </summary>
  15. public class DateBoldEventArgs : EventArgs {
  16. //
  17. // --- Public Properties
  18. //
  19. [MonoTODO]
  20. public int[] DaysToBold {
  21. get { throw new NotImplementedException (); }
  22. set { throw new NotImplementedException (); }
  23. }
  24. [MonoTODO]
  25. public int Size {
  26. get { throw new NotImplementedException (); }
  27. }
  28. [MonoTODO]
  29. public DateTime StartDate {
  30. get { throw new NotImplementedException (); }
  31. }
  32. }
  33. }