TableDesigner.cs 760 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Namespace: System.Web.UI.Design.WebControls
  3. * Class: TableDesigner
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. *
  8. * (C) Gaurav Vaish (2002)
  9. */
  10. using System;
  11. using System.Web;
  12. using System.Web.UI.WebControls;
  13. using System.Web.UI.Design;
  14. namespace System.Web.UI.Design.WebControls
  15. {
  16. public class TableDesigner : TextControlDesigner
  17. {
  18. public TableDesigner(): base()
  19. {
  20. }
  21. [MonoTODO]
  22. public override string GetDesignTimeHtml()
  23. {
  24. if(Component != null && Component is Table)
  25. {
  26. Table table = (Table) Component;
  27. throw new NotImplementedException();
  28. }
  29. return String.Empty;
  30. }
  31. [MonoTODO]
  32. public override string GetPersistInnerHtml()
  33. {
  34. throw new NotImplementedException();
  35. }
  36. }
  37. }