using System;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections;
using CMS.CMSHelper;
using CMS.FormControls;
using CMS.GlobalHelper;
using CMS.ResourceManager;
using CMS.SettingsProvider;
using CMS.SiteProvider;
public partial class CMSFormControls_System_LocalizableTextArea : FormEngineUserControl
{
#region "Properties"
///
/// Gets or sets the enabled state of the control.
///
public override bool Enabled
{
get
{
return base.Enabled;
}
set
{
base.Enabled = value;
if (txtDescription != null)
{
txtDescription.Enabled = value;
}
}
}
///
/// Gets or sets form control value.
///
public override object Value
{
get
{
return txtDescription.Value;
}
set
{
txtDescription.Value = value;
}
}
#endregion
}