X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.HtmlControls%2FHtmlTextArea.cs;fp=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.HtmlControls%2FHtmlTextArea.cs;h=90714426e0aff26a5bfceb3fa8fb51dee3c95231;hb=2954c2326ae22ebbc5c8f187a925586fe8ed26c3;hp=644360c48172209388fded8bb0b4fa4900578862;hpb=842e1f781681181976c1067b7e639d947d99f390;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs index 644360c4817..90714426e0a 100644 --- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs +++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs @@ -47,6 +47,8 @@ namespace System.Web.UI.HtmlControls { [DefaultValue ("")] [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)] + [WebSysDescription("")] + [WebCategory("Appearance")] public int Cols { get { string s = Attributes ["cols"]; @@ -62,6 +64,8 @@ namespace System.Web.UI.HtmlControls { [DefaultValue ("")] [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)] + [WebSysDescription("")] + [WebCategory("Behavior")] public virtual string Name { get { return ID; } set { ; } @@ -69,6 +73,8 @@ namespace System.Web.UI.HtmlControls { [DefaultValue ("")] [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)] + [WebSysDescription("")] + [WebCategory("Appearance")] public int Rows { get { string s = Attributes ["rows"]; @@ -84,6 +90,8 @@ namespace System.Web.UI.HtmlControls { [DefaultValue ("")] [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)] + [WebSysDescription("")] + [WebCategory("Appearance")] public string Value { get { return InnerHtml; } set { InnerHtml = value; } @@ -164,6 +172,8 @@ namespace System.Web.UI.HtmlControls { } + [WebSysDescription("")] + [WebCategory("Action")] public event EventHandler ServerChange { add { Events.AddHandler (serverChangeEvent, value); } remove { Events.RemoveHandler (serverChangeEvent, value); }