Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TableDesigner.cs « System.Web.UI.Design.WebControls « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b36cb7eb995e3c909526a3eed0b6da9c798081c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 * Namespace:   System.Web.UI.Design.WebControls
 * Class:       TableDesigner
 *
 * Author:      Gaurav Vaish
 * Maintainer:  gvaish_mono@lycos.com
 *
 * (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();
		}
	}
}