Back to Devexpress

SiteMapColumnCollection Class

aspnet-devexpress-dot-web-d6b8e42d.md

latest2.8 KB
Original Source

SiteMapColumnCollection Class

Represents a collection of columns within the site map control.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class SiteMapColumnCollection :
    Collection<SiteMapColumn>
vb
Public Class SiteMapColumnCollection
    Inherits Collection(Of 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.

Implements

IList

ICollection

IStateManager

DevExpress.Utils.IAssignableCollection

IList<SiteMapColumn>

ICollection<SiteMapColumn>

IEnumerable<SiteMapColumn>

IEnumerable

Inheritance

Object StateManagedCollectionBase Collection Collection<SiteMapColumn> SiteMapColumnCollection

See Also

SiteMapColumnCollection Members

Columns

Site Map Control

DevExpress.Web Namespace