src\Framework\System\Windows\Documents\TextRangeEditTables.cs (51)
125private static TableRow GetTableRowFromPosition(TextPointer position)
128while (element != null && !(element is TableRow))
133return element as TableRow;
192TableRow anchorRow;
193TableRow movingRow;
236TableRow anchorRow;
237TableRow movingRow;
293TableRow anchorRow;
294TableRow movingRow;
378TableRow anchorRow, TableRow movingRow)
469TableRow row = movingCell.Row;
570TableRow row = (TableRow)selection.MovingPosition.Parent;
602TableRow row = cell.Row;
669TableRow row = new TableRow();
838TableRow tableRow = new TableRow();
844if (parent is TableRow)
953TableRow startRow;
954TableRow endRow;
1127TableRow currentRow = GetTableRowFromPosition(currentRowPosition);
1155TableRow firstInsertedRow = null;
1156TableRow lastInsertedRow = null;
1162TableRow newRow = CopyRow(currentRow);
1227TableRow startRow = GetTableRowFromPosition(textRange.Start);
1228TableRow endRow = GetTableRowFromPosition(textRange.End);
1284TableRow row = rows[rowIndex];
1305private static void CorrectRowSpansOnDeleteRows(TableRow nextRow, int deletedRowsCount)
1373TableRow row = rowGroup.Rows[iRow];
1437TableRow startRow;
1438TableRow endRow;
1494TableRow row = rowGroup.Rows[iRow];
1831TableRow startRow;
1832TableRow endRow;
1882TableRow startRow;
1883TableRow endRow;
2049out TableRow anchorRow, out TableRow movingRow,
2107TableRow movingCellRow = movingPosition.Parent as TableRow;
2134out TableRow anchorRow, out TableRow movingRow,
2173out TableRow row,
2197else if (element is TableRow)
2199row = (TableRow)element;
2230private static TableRow CopyRow(TableRow currentRow)
2234TableRow newRow = new TableRow();
2254private static TableCell AddCellCopy(TableRow newRow, TableCell currentCell, int cellInsertionIndex, bool copyRowSpan, bool copyColumnSpan)
2431TableRow row = rowGroup.Rows[rowIndex];
2511private static bool GetBoundaryCells(TableRow row, int bottomRow, int leftColumn, int rightColumn, out TableCell firstCell, out TableCell lastCell)