| 123456789101112131415161718192021222324252627 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Enumeration: ImageAlign
- *
- * Author: Gaurav Vaish
- * Contact: <[email protected]>, <[email protected]>
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.UI.WebControls
- {
- public enum ImageAlign
- {
- NotSet,
- Left,
- Right,
- BaseLine,
- Top,
- Middle,
- Bottom,
- AbsBottom,
- AbsMiddle,
- TextTop
- }
- }
|