PagerPosition.cs 345 B

1234567891011121314151617181920
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: PagerPosition
  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 PagerPosition
  14. {
  15. Bottom,
  16. Top,
  17. TopAndBottom
  18. }
  19. }