ClassDataGridColumnCollection
Represents a strongly typed collection of DataGridColumn objects.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
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
this[string]
Gets the DataGridColumn instance which Name value matches the provided one.
Declaration
public DataGridColumn this[string name] { get; }
Parameters
name
The name of the column to search for.
Property Value
Methods
ClearItems()
Clears the items.
Declaration
protected override void ClearItems()
Overrides
InsertItem(int, DataGridColumn)
Inserts the item.
Declaration
protected override void InsertItem(int index, DataGridColumn item)
Parameters
index
The index.
item
The item.
Overrides
OnCollectionChanged(NotifyCollectionChangedEventArgs)
Raises the CollectionChanged event with the provided arguments.
Declaration
protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
Parameters
e
NotifyCollectionChangedEventArgs
Arguments of the event being raised.
Overrides
RemoveItem(int)
Removes the item.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The index.
Overrides
SetItem(int, DataGridColumn)
Sets the item.
Declaration
protected override void SetItem(int index, DataGridColumn item)
Parameters
index
The index.
item
The item.
Overrides