DayNameFormat.cs 364 B

123456789101112131415161718192021
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: DayNameFormat
  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 DayNameFormat
  14. {
  15. Full,
  16. Short,
  17. FirstLetter,
  18. FirstTwoLetters
  19. }
  20. }