IDashboardArea Interface

Members  Example 

Inherit this interface in order to add your own dashboards into the administration interface.

Syntax

'Declaration
 
Public Interface IDashboardArea 
public interface IDashboardArea 

Example

Creates a custom dashboard area to the admin UI. Place the interface files in a MyDashboard folder inside the Admin folder (as specified by the Path property). Remember that the IDashboardArea implementation also need to be registered through a call to Dashboard.RegisterArea(area)
public class MyDashboardArea : IDashboardArea {
    public string Title { get { return "My dashboard"; } }
    public string MenuName { get { return "Manage something"; } }
    public string Icon { get { return "icon-users"; } }
    public string Path { get { return "MyDashboard"; } }
}

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

This documentation was created using Document! X from Innovasys