GridLines.cs 347 B

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