aspnet-devexpress-dot-web-dot-readonlygridcolumncollection-1.md
The read-only column collection of grid-like controls.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class ReadOnlyGridColumnCollection<T> :
ReadOnlyCollection<T>
where T : WebColumnBase
Public Class ReadOnlyGridColumnCollection(Of T As WebColumnBase)
Inherits ReadOnlyCollection(Of T)
| Name | Description |
|---|---|
| T |
The type of columns.
|
The ASPxGridView provides the following read-only collections: ASPxGridView.DataColumns, ASPxGridView.AllColumns, and ASPxGridView.VisibleColumns. These collections are presented by the ReadOnlyGridViewColumnCollection<T> class. Members of this class can be used to get the column with the specified name, field name or caption.
IList<T>
ICollection<T>
IEnumerable<T>
Object ReadOnlyCollection<T> ReadOnlyGridColumnCollection<T>
See Also