Sections
Configuring sections in Umbraco UI Builder, the backoffice UI builder for Umbraco.

Defining a section
AddSection(string name, Lambda sectionConfig = null) : SectionConfigBuilder
AddSectionBefore(string beforeAlias, string name, Lambda sectionConfig = null) : SectionConfigBuilder
AddSectionAfter(string afterAlias, string name, Lambda sectionConfig = null) : SectionConfigBuilder
Changing a section alias
SetAlias(string alias) : SectionConfigBuilder
Configuring the section tree
Tree(Lambda treeConfig = null) : TreeConfigBuilder
Adding a dashboard to the section
AddDashboard(string name, Lambda dashboardConfig = null) : DashboardConfigBuilder
AddDashboardBefore(string beforeAlias, string name, Lambda dashboardConfig = null) : DashboardConfigBuilder
AddDashboardAfter(string afterAlias, string name, Lambda dashboardConfig = null) : DashboardConfigBuilder
Extending an existing section
WithSection(string alias, Lambda sectionConfig = null) : WithSectionConfigBuilder
Adding a tree to an existing section
AddTree(string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
AddTree(string groupName, string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
AddTreeBefore(string treeAlias, string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
AddTreeAfter(string treeAlias, string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
Adding a dashboard to an existing section
AddDashboard (string name, Lambda dashboardConfig = null) : DashboardConfigBuilder
AddDashboardBefore (string beforeAlias, string name, Lambda dashboardConfig = null) : DashboardConfigBuilder
AddDashboardAfter (string afterAlias, string name, Lambda dashboardConfig = null) : DashboardConfigBuilder
Last updated
Was this helpful?