| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- * Namespace: System.Web.UI.Design.WebControls
- * Class: TableDesigner
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- using System.Web.UI.WebControls;
- using System.Web.UI.Design;
- namespace System.Web.UI.Design.WebControls
- {
- public class TableDesigner : TextControlDesigner
- {
- public TableDesigner(): base()
- {
- }
- [MonoTODO]
- public override string GetDesignTimeHtml()
- {
- if(Component != null && Component is Table)
- {
- Table table = (Table) Component;
- throw new NotImplementedException();
- }
- return String.Empty;
- }
- [MonoTODO]
- public override string GetPersistInnerHtml()
- {
- throw new NotImplementedException();
- }
- }
- }
|