| 12345678910111213141516171819 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Enumeration: RepeatDirection
- *
- * Author: Gaurav Vaish
- * Contact: <[email protected]>, <[email protected]>
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.UI.WebControls
- {
- public enum RepeatDirection
- {
- Horizontal,
- Vertical
- }
- }
|