TableColumnCollection Class
Represents a set of TableColumns which define all of the shared vertical edges of the table, as well as default widths for each of these TableColumns.
public sealed class TableColumnCollection : Collection<TableColumn>, IList<TableColumn>, ICollection<TableColumn>, IList, ICollection, IReadOnlyList<TableColumn>, IReadOnlyCollection<TableColumn>, IEnumerable<TableColumn>, IEnumerable
Public NotInheritable Class TableColumnCollection
Inherits Collection(Of TableColumn)
Implements IList(Of TableColumn), ICollection(Of TableColumn), IList, ICollection, IReadOnlyList(Of TableColumn), IReadOnlyCollection(Of TableColumn), IEnumerable(Of TableColumn), IEnumerable
- Inheritance:
- System.ObjectSystem.Collections.ObjectModel.Collection<TableColumn>TableColumnCollection
Implements
System.Collections.Generic.IList<TableColumn>
System.Collections.Generic.ICollection<TableColumn>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<TableColumn>
System.Collections.Generic.IReadOnlyCollection<TableColumn>
System.Collections.Generic.IEnumerable<TableColumn>
System.Collections.IEnumerable
Remarks
Used as a container for a Columns property.
Table could have less or more columns than the number of columns in this collection when it is rendered, depending on how many TableCell there are in each TableRow in a table.
Constructors
TableColumnCollection()
Initializes a new instance of the TableColumnCollection class.
TableColumnCollection(TableColumn[])
Initializes a new instance of the TableColumnCollection class with a specified table columns.
public TableColumnCollection(params TableColumn[] columns)
Public Sub New(ParamArray columns As TableColumn())
Parameters
columns
- TableColumn[]
The table columns.
Implements
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable