TextBoxMode.cs 381 B

123456789101112131415161718192021
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: TextBoxMode
  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 TextBoxMode
  15. {
  16. SingleLine,
  17. MultiLine,
  18. Password
  19. }
  20. }