| 123456789101112131415161718192021222324252627282930 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Enumeration: FontSize
- *
- * 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 FontSize
- {
- NotSet,
- AsUnit,
- Smaller,
- Larger,
- XXSmall,
- XSmall,
- Small,
- Medium,
- Large,
- XLarge,
- XXLarge
- }
- }
|