IRepeatInfoUser.cs 525 B

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