| 1234567891011121314151617181920212223242526272829 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Enumeration: ImageAlign
- *
- * 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 ImageAlign
- {
- NotSet,
- Left,
- Right,
- BaseLine,
- Top,
- Middle,
- Bottom,
- AbsBottom,
- AbsMiddle,
- TextTop
- }
- }
|