Skip to main content
Tab

SiteMapColumnCollection Class

Represents a collection of columns within the site map control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class SiteMapColumnCollection :
    Collection<SiteMapColumn>

The following members return SiteMapColumnCollection objects:

Remarks

A site map control holds its columns within a collection, represented by an instance of the SiteMapColumnCollection class, and can be accessed via the ASPxSiteMapControlBase.Columns property. The properties and methods exposed by the SiteMapColumnCollection class can be used to perform common collection operations, such as adding new or deleting existing columns. Each item of the collection is represented by a SiteMapColumn object. Individual columns can be accessed using indexer notation.

See Also