| 12345678910111213141516171819202122 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Enumeration: NextPrevFormat
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.UI.WebControls
- {
- public enum NextPrevFormat
- {
- CustomText,
- ShortMonth,
- FullMonth
- }
- }
|