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

31 lines
926 B
C#

namespace umbraco.interfaces
{
/// <summary>
/// IMenuElement is an interface for items in the umbraco backoffice panel menu
/// </summary>
public interface IMenuElement
{
/// <summary>
/// Gets the name of the element.
/// </summary>
/// <value>The name of the element.</value>
string ElementName { get;}
/// <summary>
/// Gets the element id pre fix.
/// </summary>
/// <value>The element id pre fix.</value>
string ElementIdPreFix { get;}
/// <summary>
/// Gets the element class.
/// </summary>
/// <value>The element class.</value>
string ElementClass { get;}
/// <summary>
/// Gets the width of the extra menu.
/// </summary>
/// <value>The width of the extra menu.</value>
int ExtraMenuWidth { get;}
}
}