| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // System.Windows.Forms.DateBoldEventArgs
- //
- // Author:
- // stubbed out by Richard Baumann ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) Ximian, Inc., 2002
- //
- namespace System.Windows.Forms {
- // <summary>
- // This is only a template. Nothing is implemented yet.
- // This class is internal to the .NET framework.
- // </summary>
- public class DateBoldEventArgs : EventArgs {
- //
- // --- Public Properties
- //
- [MonoTODO]
- public int[] DaysToBold {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public int Size {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public DateTime StartDate {
- get { throw new NotImplementedException (); }
- }
- }
- }
|