43 references to Row
PresentationFramework (43)
System\Windows\Documents\TableCell.cs (3)
374
internal Table Table { get { return
Row
?.Table; } }
399
return (
Row
.Index);
410
return (
Row
.RowGroup.Index);
System\windows\Documents\TextEditorTyping.cs (1)
1440
TableRow row = cell.
Row
;
System\Windows\Documents\TextRangeEditTables.cs (36)
330
TableRowGroup rowGroup = anchorCell.
Row
.RowGroup;
333
int firstRowIndex = Math.Min(anchorCell.
Row
.Index, movingCell.
Row
.Index);
334
int lastRowIndex = Math.Max(anchorCell.
Row
.Index + anchorCell.RowSpan - 1, movingCell.
Row
.Index + movingCell.RowSpan - 1);
362
Invariant.Assert(segmentStartCell.
Row
== segmentEndCell.
Row
, "Inconsistent Rows for segmentStartCell and segmentEndCell");
447
Invariant.Assert(anchorCell.
Row
.RowGroup == movingCell.
Row
.RowGroup, "anchorCell.Row.RowGroup == movingCell.Row.RowGroup");
455
(movingCell.
Row
== anchorCell.
Row
&& movingCell.Index + 1 == anchorCell.Index ||
456
anchorCell.Index == 0 && movingCell.Index == movingCell.
Row
.Cells.Count - 1 && movingCell.
Row
.Index + 1 == anchorCell.
Row
.Index))
464
TableRow row = movingCell.
Row
;
597
TableRow row = cell.
Row
;
1000
startRow = startCell.
Row
;
1014
endRow = startCell.
Row
;
1318
int rowIndex = spannedCell.
Row
.Index;
1336
Invariant.Assert(spannedCell.RowSpan - (nextRow.Index - spannedCell.
Row
.Index) > 0, "expecting: spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0");
1337
newCell.ContentStart.TextContainer.SetValue(newCell.ContentStart, TableCell.RowSpanProperty, spannedCell.RowSpan - (nextRow.Index - spannedCell.
Row
.Index));
1846
Invariant.Assert(startCell.
Row
.RowGroup == endCell.
Row
.RowGroup, "startCell and endCell must belong to the same RowGroup");
1847
Invariant.Assert(startCell.
Row
.Index <= endCell.
Row
.Index, "startCell.Row.Index must be <= endCell.Row.Index");
1851
TextRange result = MergeCellRange(startCell.
Row
.RowGroup, //
1852
startCell.
Row
.Index, // topRow
1853
endCell.
Row
.Index + endCell.RowSpan - 1, // bottomRow
1904
TableRowGroup rowGroup = startCell.
Row
.RowGroup;
1907
TableCellCollection cells = startCell.
Row
.Cells;
1924
AddCellCopy(startCell.
Row
, startCell, startCellIndex + 1, /*copyRowSpan:*/true, /*copyColumnSpan:*/false);
1988
Invariant.Assert(startCell.
Row
== endCell.
Row
, "startCell and endCell must be in the same Row");
2100
movingCell = movingCell.
Row
.Cells[movingCell.Index - 1];
2389
if (spannedCells[i].
Row
.Index < topRow)
2466
if (firstCell.Index == 0 && lastCell.Index == lastCell.
Row
.Cells.Count - 1)
System\windows\Documents\TextSelection.cs (3)
1033
rowGroup = movingCell.
Row
.RowGroup;
1041
nextRowIndex = movingCell.
Row
.Index + movingCell.RowSpan;
1050
nextRowIndex = movingCell.
Row
.Index - 1;