| 1234567891011121314151617181920212223242526 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Interface: IRepeatInfoUser
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * 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; }
- }
- }
|