Files
Umbraco-CMS/umbraco/interfaces/ILiveEditingDataEditor.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

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; }
}
}