using System; namespace umbraco.macroRenderings { /// /// Summary description for textMultiple. /// public class textMultiple : text { public textMultiple() { // // TODO: Add constructor logic here // } protected override void OnInit(EventArgs e) { base.OnInit (e); this.TextMode = System.Web.UI.WebControls.TextBoxMode.MultiLine; this.Rows = 6; } } }