| 12345678910111213141516171819202122232425 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Interface: IRepeatInfoUser
- *
- * Author: Gaurav Vaish
- * Contact: <[email protected]>, <[email protected]>
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public interface IRepeatInfoUser
- {
- bool HasFooter { get; }
- bool HasHeader { get; }
- bool HasSeparators { get; }
- int RepeatedItemCount { get; }
- }
- }
|