/** * Namespace: System.Web.UI.WebControls * Interface: IRepeatInfoUser * * Author: Gaurav Vaish * Maintainer: gvaish@iitk.ac.in * Contact: , * Implementation: yes * 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; } } }