6 instantiations of TableRow
PresentationFramework (6)
System\Windows\Documents\FixedElement.cs (1)
245
root = new
TableRow
();
System\Windows\Documents\TextRangeEditTables.cs (3)
666
TableRow row = new
TableRow
();
835
TableRow tableRow = new
TableRow
();
2231
TableRow newRow = new
TableRow
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9809
bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.
TableRow
(); };
System\Windows\Markup\KnownTypes.cs (1)
1585
case KnownElements.TableRow: o = new System.Windows.Documents.
TableRow
(); break;
130 references to TableRow
PresentationFramework (130)
MS\Internal\Documents\IIndexedChild.cs (3)
20
/// whcih means cells are contained in a collection owned by <see cref="
TableRow
"/> type.
21
/// And <see cref="
TableRow
"/> in turn implements <see cref="IAcceptInsertion"/>
23
/// Note that <see cref="
TableRow
"/> also implements IIndexedChild with parent <see cref="TableRowGroup"/>
MS\Internal\PtsHost\RowParagraph.cs (2)
363
internal
TableRow
Row { get { return (
TableRow
)Element; } }
MS\Internal\PtsHost\RowVisual.cs (3)
40
internal RowVisual(
TableRow
row)
58
internal
TableRow
Row
72
private readonly
TableRow
_row;
MS\Internal\PtsHost\TableParaClient.cs (8)
240
TableRow
rowPrevious = null;
246
TableRow
row;
532
TableRow
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).Row;
1139
TableRow
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).Row;
1343
TableRow
row = rowParagraph.Row;
1479
TableRow
row)
1842
TableRow
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[0].fsnmRow))).Row;
1897
TableRow
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).Row;
MS\Internal\PtsHost\TableParagraph.cs (3)
274
TableRow
tableRow = null;
323
TableRow
currentRow = ((RowParagraph)prevParagraph).Row;
325
TableRow
tableRow = null;
System\Windows\Automation\Peers\TableAutomationPeer.cs (1)
144
foreach (
TableRow
tableRow in group.Rows)
System\Windows\Documents\FixedElement.cs (1)
405
return typeof(
TableRow
);
System\Windows\Documents\TableCell.cs (12)
47
public class TableCell : TextElement, IIndexedChild<
TableRow
>
98
TableRow
newParentTR = newParent as
TableRow
;
107
((
TableRow
)oldParent).Cells.InternalRemove(this);
315
void IIndexedChild<
TableRow
>.OnEnterParentTree()
319
void IIndexedChild<
TableRow
>.OnExitParentTree()
323
void IIndexedChild<
TableRow
>.OnAfterExitParentTree(
TableRow
parent)
327
int IIndexedChild<
TableRow
>.Index
355
internal void OnAfterExitParentTree(
TableRow
row)
388
internal
TableRow
Row { get { return Parent as
TableRow
; } }
System\Windows\Documents\TableCellCollection.cs (3)
33
internal TableCellCollection(
TableRow
owner)
35
_cellCollectionInternal = new TableTextElementCollectionInternal<
TableRow
, TableCell>(owner);
558
private TableTextElementCollectionInternal<
TableRow
, TableCell> _cellCollectionInternal;
System\Windows\Documents\TableRowCollection.cs (19)
23
public sealed class TableRowCollection : IList<
TableRow
>, IList
35
_rowCollectionInternal = new TableTextElementCollectionInternal<TableRowGroup,
TableRow
>(owner);
84
public void CopyTo(
TableRow
[] array, int index)
100
IEnumerator<
TableRow
> IEnumerable<
TableRow
>.GetEnumerator()
102
return ((IEnumerable<
TableRow
>)_rowCollectionInternal).GetEnumerator();
117
public void Add(
TableRow
item)
142
public bool Contains(
TableRow
item)
152
public int IndexOf(
TableRow
item)
181
public void Insert(int index,
TableRow
item)
201
public bool Remove(
TableRow
item)
438
public
TableRow
this[int index]
457
internal void InternalAdd(
TableRow
item)
465
internal void InternalRemove(
TableRow
item)
502
private void PrivateConnectChild(int index,
TableRow
item)
512
private void PrivateDisconnectChild(
TableRow
item)
518
private bool BelongsToOwner(
TableRow
item)
525
private int FindInsertionIndex(
TableRow
item)
558
private TableTextElementCollectionInternal<TableRowGroup,
TableRow
> _rowCollectionInternal;
System\Windows\Documents\TableRowGroup.cs (3)
88
TableRow
row = value as
TableRow
;
96
throw (new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(
TableRow
)), "value"));
System\windows\Documents\TextEditorTyping.cs (3)
1425
TableRow
row = ((TextPointer)This.Selection.End).Parent as
TableRow
;
1461
TableRow
row = cell.Row;
System\Windows\Documents\TextPointerBase.cs (1)
713
return typeof(
TableRow
).IsAssignableFrom(thisPosition.ParentType) &&
System\Windows\Documents\TextRangeEditTables.cs (51)
122
private static
TableRow
GetTableRowFromPosition(TextPointer position)
125
while (element != null && !(element is
TableRow
))
130
return element as
TableRow
;
189
TableRow
anchorRow;
190
TableRow
movingRow;
233
TableRow
anchorRow;
234
TableRow
movingRow;
290
TableRow
anchorRow;
291
TableRow
movingRow;
375
TableRow
anchorRow,
TableRow
movingRow)
466
TableRow
row = movingCell.Row;
567
TableRow
row = (
TableRow
)selection.MovingPosition.Parent;
599
TableRow
row = cell.Row;
666
TableRow
row = new TableRow();
835
TableRow
tableRow = new TableRow();
841
if (parent is
TableRow
)
950
TableRow
startRow;
951
TableRow
endRow;
1124
TableRow
currentRow = GetTableRowFromPosition(currentRowPosition);
1152
TableRow
firstInsertedRow = null;
1153
TableRow
lastInsertedRow = null;
1159
TableRow
newRow = CopyRow(currentRow);
1224
TableRow
startRow = GetTableRowFromPosition(textRange.Start);
1225
TableRow
endRow = GetTableRowFromPosition(textRange.End);
1281
TableRow
row = rows[rowIndex];
1302
private static void CorrectRowSpansOnDeleteRows(
TableRow
nextRow, int deletedRowsCount)
1370
TableRow
row = rowGroup.Rows[iRow];
1434
TableRow
startRow;
1435
TableRow
endRow;
1491
TableRow
row = rowGroup.Rows[iRow];
1828
TableRow
startRow;
1829
TableRow
endRow;
1879
TableRow
startRow;
1880
TableRow
endRow;
2046
out
TableRow
anchorRow, out
TableRow
movingRow,
2104
TableRow
movingCellRow = movingPosition.Parent as
TableRow
;
2131
out
TableRow
anchorRow, out
TableRow
movingRow,
2170
out
TableRow
row,
2194
else if (element is
TableRow
)
2196
row = (
TableRow
)element;
2227
private static
TableRow
CopyRow(
TableRow
currentRow)
2231
TableRow
newRow = new TableRow();
2251
private static TableCell AddCellCopy(
TableRow
newRow, TableCell currentCell, int cellInsertionIndex, bool copyRowSpan, bool copyColumnSpan)
2428
TableRow
row = rowGroup.Rows[rowIndex];
2508
private static bool GetBoundaryCells(
TableRow
row, int bottomRow, int leftColumn, int rightColumn, out TableCell firstCell, out TableCell lastCell)
System\Windows\Documents\TextRangeSerialization.cs (3)
360
while (!typeof(
TableRow
).IsAssignableFrom(pointer.ParentType))
365
Invariant.Assert(typeof(
TableRow
).IsAssignableFrom(pointer.ParentType), "pointer must be in a scope of TableRow");
1727
if (typeof(
TableRow
).IsAssignableFrom(commonAncestor.ParentType) ||
System\Windows\Documents\TextSchema.cs (7)
198
else if (typeof(
TableRow
).IsAssignableFrom(newType))
200
return typeof(
TableRow
).IsAssignableFrom(siblingType);
440
else if (typeof(
TableRow
).IsAssignableFrom(type))
442
return typeof(
TableRow
);
554
else if (typeof(
TableRow
).IsAssignableFrom(type))
856
return typeof(
TableRow
).IsAssignableFrom(childType);
858
else if (typeof(
TableRow
).IsAssignableFrom(parentType))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
725
case 629: t = () => typeof(
TableRow
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5858
Type type = typeof(System.Windows.Documents.
TableRow
);
5860
this.GetXamlType(typeof(System.Windows.Documents.
TableRow
)), // DeclaringType
5866
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.
TableRow
)target).Cells; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9807
typeof(System.Windows.Documents.
TableRow
),
System\Windows\Markup\KnownTypes.cs (2)
2531
case KnownElements.TableRow: return (o as System.Windows.Documents.
TableRow
).Cells;
6183
case KnownElements.TableRow: t = typeof(System.Windows.Documents.
TableRow
); break;