4 instantiations of TableColumn
PresentationFramework (4)
System\Windows\Documents\TextRangeEditTables.cs (1)
1676
table.Columns.Add(new
TableColumn
());
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (1)
128
TableColumn newTableColumn = new
TableColumn
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10860
DefaultConstructor = delegate () { return new System.Windows.Documents.
TableColumn
(); },
System\Windows\Markup\KnownTypes.cs (1)
1577
case KnownElements.TableColumn: o = new System.Windows.Documents.
TableColumn
(); break;
44 references to TableColumn
PresentationFramework (44)
MS\Internal\Documents\TableColumnCollectionInternal.cs (7)
13
internal class TableColumnCollectionInternal : ContentElementCollection<Table,
TableColumn
>
32
public override void Add(
TableColumn
item)
93
public override void Insert(int index,
TableColumn
item)
132
internal override void PrivateConnectChild(int index,
TableColumn
item)
169
internal override void PrivateDisconnectChild(
TableColumn
item)
204
public override bool Remove(
TableColumn
item)
312
public override
TableColumn
this[int index]
MS\Internal\PtsHost\TableParaClient.cs (1)
1944
_calculatedColumns[i].UserWidth =
TableColumn
.DefaultWidth;
System\Windows\Documents\TableColumn.cs (4)
231
typeof(
TableColumn
),
243
typeof(
TableColumn
),
264
Table table = ((
TableColumn
) d).Table;
273
Table table = ((
TableColumn
) d).Table;
System\Windows\Documents\TableColumnCollection.cs (14)
20
public sealed class TableColumnCollection : IList<
TableColumn
>, IList
81
public void CopyTo(
TableColumn
[] array, int index)
97
IEnumerator<
TableColumn
> IEnumerable<
TableColumn
>.GetEnumerator()
99
return ((IEnumerable<
TableColumn
>)_columnCollection).GetEnumerator();
114
public void Add(
TableColumn
item)
139
public bool Contains(
TableColumn
item)
149
public int IndexOf(
TableColumn
item)
178
public void Insert(int index,
TableColumn
item)
198
public bool Remove(
TableColumn
item)
274
TableColumn
item = value as
TableColumn
;
278
throw new ArgumentException(SR.Format(SR.TableCollectionElementTypeExpected, nameof(
TableColumn
)), nameof(value));
443
public
TableColumn
this[int index]
System\Windows\Documents\TextSchema.cs (6)
430
else if (typeof(
TableColumn
).IsAssignableFrom(type))
432
return typeof(
TableColumn
);
465
Invariant.Assert(typeof(TextElement).IsAssignableFrom(type) || typeof(
TableColumn
).IsAssignableFrom(type),
544
else if (typeof(
TableColumn
).IsAssignableFrom(type))
1048
TableColumn
.WidthProperty,
1049
TableColumn
.BackgroundProperty,
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (8)
92
internal static
TableColumn
[] SaveColumns(Table table)
94
TableColumn
[] savedColumns;
97
savedColumns = new
TableColumn
[table.Columns.Count];
112
internal static void RestoreColumns(Table table,
TableColumn
[] savedColumns)
126
private static
TableColumn
CopyColumn(
TableColumn
sourceTableColumn)
128
TableColumn
newTableColumn = new TableColumn();
479
private
TableColumn
[] _columns;
System\Windows\Documents\TextTreeExtractElementUndoUnit.cs (1)
103
private readonly
TableColumn
[] _columns;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
721
case 628: t = () => typeof(
TableColumn
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10857
typeof(System.Windows.Documents.
TableColumn
),
System\Windows\Markup\KnownTypes.cs (1)
6175
case KnownElements.TableColumn: t = typeof(System.Windows.Documents.
TableColumn
); break;