NextPrevFormat.cs 355 B

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