IRepeatInfoUser.cs 718 B

1234567891011121314151617181920212223242526272829
  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. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. using System;
  14. using System.Web;
  15. using System.Web.UI;
  16. namespace System.Web.UI.WebControls
  17. {
  18. public interface IRepeatInfoUser
  19. {
  20. bool HasFooter { get; }
  21. bool HasHeader { get; }
  22. bool HasSeparators { get; }
  23. int RepeatedItemCount { get; }
  24. void RenderItem(ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer);
  25. Style GetItemStyle(ListItemType itemType, int repeatIndex);
  26. }
  27. }