ListSelectionMode.cs 341 B

12345678910111213141516171819
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: ListSelectionMode
  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 ListSelectionMode
  14. {
  15. Single,
  16. Multiple
  17. }
  18. }