GridLines.cs 381 B

12345678910111213141516171819202122
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: GridLines
  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 GridLines
  15. {
  16. None,
  17. Horizontal,
  18. Vertical,
  19. Both
  20. }
  21. }