Represents a strongly typed collection of DataGridColumn objects.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public sealed class DataGridColumnCollection : ObservableCollection<DataGridColumn>, IList<DataGridColumn>, ICollection<DataGridColumn>, IList, ICollection, IReadOnlyList<DataGridColumn>, IReadOnlyCollection<DataGridColumn>, IEnumerable<DataGridColumn>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
Inheritance: objectCollection<DataGridColumn>ObservableCollection<DataGridColumn>DataGridColumnCollection
Implements:
Inherited Members
Properties
Gets the DataGridColumn instance which Name value matches the provided one.
C#
public DataGridColumn this[string name] { get; }
The name of the column to search for.
Methods
Clears the items.
C#
protected override void ClearItems()
Overrides:
Inserts the item.
C#
protected override void InsertItem(int index, DataGridColumn item)
The index.
itemDataGridColumnThe item.
Overrides:
Raises the CollectionChanged event with the provided arguments.
C#
protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
Arguments of the event being raised.
Overrides:
Removes the item.
Sets the item.
C#
protected override void SetItem(int index, DataGridColumn item)
The index.
itemDataGridColumnThe item.
Overrides: