Skip to main content
Tab

ASPxSiteMapControlBase.Categorized Property

Gets or sets a value that specifies whether the site map data is displayed categorized based on the top level nodes.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool Categorized { get; set; }

Property Value

Type Default Description
Boolean false

true if the site map data is displayed categorized; otherwise, false.

Remarks

Use the Categorized property to control whether the site map data is displayed grouped by the values of the top level nodes. This will make the data more understandable in certain cases.

If the Categorized property is set to true, each top level node serves as a category name and opens a group where its child nodes are contained. Such groups are always displayed one under another within the site map control. Nodes within a group are displayed organized in columns based upon the ASPxSiteMapControlBase.ColumnCount property value.

The following image displays the site map control whose Categorized property is set to true and the ASPxSiteMapControlBase.ColumnCount property is set to 2.

Categorized_True.png

See Also