using System;
using System.Collections;
using CMS.FormControls;
using CMS.SettingsProvider;
using CMS.PortalEngine;
using CMS.UIControls;
public partial class CMSModules_Objects_FormControls_Cloning_CMS_WebPartLayoutSettings : CloneSettingsControl
{
#region "Properties"
///
/// Gets properties hashtable.
///
public override Hashtable CustomParameters
{
get
{
return GetProperties();
}
}
#endregion
#region "Methods"
///
/// Returns properties hashtable.
///
private Hashtable GetProperties()
{
Hashtable result = new Hashtable();
result[PortalObjectType.WEBPARTLAYOUT + ".appthemes"] = chkAppThemes.Checked;
return result;
}
#endregion
}