Files
Umbraco-CMS/src/umbraco.interfaces/ILiveEditingDataEditor.cs
2012-06-22 20:39:48 +04:00

17 lines
431 B
C#

using System.Web.UI;
namespace umbraco.interfaces
{
/// <summary>
/// Data type editor controls can choose to implement this interface
/// to customize their Live Editing behavior.
/// </summary>
public interface ILiveEditingDataEditor
{
/// <summary>
/// Gets the control used for Live Editing.
/// </summary>
Control LiveEditingControl { get; }
}
}