IRepeatInfoUser.cs 491 B

12345678910111213141516171819202122232425
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Interface: IRepeatInfoUser
  4. *
  5. * Author: Gaurav Vaish
  6. * Contact: <[email protected]>, <[email protected]>
  7. * Status: 100%
  8. *
  9. * (C) Gaurav Vaish (2001)
  10. */
  11. using System;
  12. using System.Web;
  13. using System.Web.UI;
  14. namespace System.Web.UI.WebControls
  15. {
  16. public interface IRepeatInfoUser
  17. {
  18. bool HasFooter { get; }
  19. bool HasHeader { get; }
  20. bool HasSeparators { get; }
  21. int RepeatedItemCount { get; }
  22. }
  23. }