Files
Umbraco-CMS/components/macroRenderings/textMultiple.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

26 lines
437 B
C#

using System;
namespace umbraco.macroRenderings
{
/// <summary>
/// Summary description for textMultiple.
/// </summary>
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;
}
}
}