4 instantiations of TableColumn
PresentationFramework (4)
System\Windows\Documents\TextRangeEditTables.cs (1)
1675
table.Columns.Add(new
TableColumn
());
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (1)
131
TableColumn newTableColumn = new
TableColumn
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9794
bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.
TableColumn
(); };
System\Windows\Markup\KnownTypes.cs (1)
1584
case KnownElements.TableColumn: o = new System.Windows.Documents.
TableColumn
(); break;
44 references to TableColumn
PresentationFramework (44)
MS\Internal\Documents\TableColumnCollectionInternal.cs (7)
19
internal class TableColumnCollectionInternal : ContentElementCollection<Table,
TableColumn
>
38
public override void Add(
TableColumn
item)
99
public override void Insert(int index,
TableColumn
item)
138
internal override void PrivateConnectChild(int index,
TableColumn
item)
175
internal override void PrivateDisconnectChild(
TableColumn
item)
210
public override bool Remove(
TableColumn
item)
318
public override
TableColumn
this[int index]
MS\Internal\PtsHost\TableParaClient.cs (1)
1951
_calculatedColumns[i].UserWidth =
TableColumn
.DefaultWidth;
System\Windows\Documents\TableColumn.cs (4)
240
typeof(
TableColumn
),
252
typeof(
TableColumn
),
273
Table table = ((
TableColumn
) d).Table;
285
Table table = ((
TableColumn
) d).Table;
System\Windows\Documents\TableColumnCollection.cs (14)
23
public sealed class TableColumnCollection : IList<
TableColumn
>, IList
84
public void CopyTo(
TableColumn
[] array, int index)
100
IEnumerator<
TableColumn
> IEnumerable<
TableColumn
>.GetEnumerator()
102
return ((IEnumerable<
TableColumn
>)_columnCollection).GetEnumerator();
117
public void Add(
TableColumn
item)
142
public bool Contains(
TableColumn
item)
152
public int IndexOf(
TableColumn
item)
181
public void Insert(int index,
TableColumn
item)
201
public bool Remove(
TableColumn
item)
277
TableColumn
item = value as
TableColumn
;
281
throw new ArgumentException(SR.Format(SR.TableCollectionElementTypeExpected, typeof(
TableColumn
).Name), "value");
446
public
TableColumn
this[int index]
System\Windows\Documents\TextSchema.cs (6)
432
else if (typeof(
TableColumn
).IsAssignableFrom(type))
434
return typeof(
TableColumn
);
467
Invariant.Assert(typeof(TextElement).IsAssignableFrom(type) || typeof(
TableColumn
).IsAssignableFrom(type),
546
else if (typeof(
TableColumn
).IsAssignableFrom(type))
1055
TableColumn
.WidthProperty,
1056
TableColumn
.BackgroundProperty,
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (8)
95
internal static
TableColumn
[] SaveColumns(Table table)
97
TableColumn
[] savedColumns;
100
savedColumns = new
TableColumn
[table.Columns.Count];
115
internal static void RestoreColumns(Table table,
TableColumn
[] savedColumns)
129
private static
TableColumn
CopyColumn(
TableColumn
sourceTableColumn)
131
TableColumn
newTableColumn = new TableColumn();
482
private
TableColumn
[] _columns;
System\Windows\Documents\TextTreeExtractElementUndoUnit.cs (1)
107
private readonly
TableColumn
[] _columns;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
724
case 628: t = () => typeof(
TableColumn
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9792
typeof(System.Windows.Documents.
TableColumn
),
System\Windows\Markup\KnownTypes.cs (1)
6182
case KnownElements.TableColumn: t = typeof(System.Windows.Documents.
TableColumn
); break;