RepeatDirection.cs 375 B

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