NextPrevFormat.cs 413 B

12345678910111213141516171819202122
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: NextPrevFormat
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. namespace System.Web.UI.WebControls
  14. {
  15. public enum NextPrevFormat
  16. {
  17. CustomText,
  18. ShortMonth,
  19. FullMonth
  20. }
  21. }