69 references to Rows
PresentationFramework (69)
MS\Internal\PtsHost\RowParagraph.cs (3)
115
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
256
bool lastRow = Row.Index == Row.RowGroup.
Rows
.Count - 1;
332
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
MS\Internal\PtsHost\TableParaClient.cs (2)
576
if (row.Index == row.RowGroup.
Rows
.Count - 1)
1361
(row.Index == row.RowGroup.
Rows
.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index);
MS\Internal\PtsHost\TableParagraph.cs (6)
278
if(rowGroup.
Rows
.Count > 0)
280
tableRow = rowGroup.
Rows
[0];
330
if (nextRowIndex < currentRowGroup.
Rows
.Count)
332
Debug.Assert(currentRowGroup.
Rows
[nextRowIndex].Index != -1,
335
tableRow = currentRowGroup.
Rows
[nextRowIndex];
345
TableRowCollection Rows = Table.RowGroups[nextRowGroupIndex].
Rows
;
System\Windows\Automation\Peers\TableAutomationPeer.cs (4)
98
rows += group.
Rows
.Count;
138
if (currentRow + group.
Rows
.Count < row)
140
currentRow += group.
Rows
.Count;
144
foreach (TableRow tableRow in group.
Rows
)
System\Windows\Documents\Table.cs (2)
316
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
336
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
System\Windows\Documents\TableRow.cs (2)
110
((TableRowGroup)oldParent).
Rows
.InternalRemove(this);
117
((TableRowGroup)newParent).
Rows
.InternalAdd(this);
System\Windows\Documents\TableRowGroup.cs (5)
91
Rows
.Add(row);
136
return
Rows
.Count > 0;
224
for (int i = 0; i <
Rows
.Count; ++i)
226
Rows
[i].ValidateStructure(rowSpanVector);
228
_columnCount = Math.Max(_columnCount,
Rows
[i].ColumnCount);
System\windows\Documents\TextEditorTyping.cs (10)
1428
int rowIndex = body.
Rows
.IndexOf(row);
1432
if (rowIndex + 1 < body.
Rows
.Count)
1434
cell = body.
Rows
[rowIndex + 1].Cells[0];
1441
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
1465
int rowIndex = body.
Rows
.IndexOf(row);
1473
else if (rowIndex + 1 < body.
Rows
.Count)
1475
cell = body.
Rows
[rowIndex + 1].Cells[0];
1490
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
System\Windows\Documents\TextRangeEditTables.cs (29)
342
for (int rowIndex = firstRowIndex; rowIndex <= lastRowIndex && rowIndex < rowGroup.
Rows
.Count; rowIndex++)
344
TableCellCollection cells = rowGroup.
Rows
[rowIndex].Cells;
468
TableRowCollection rows = row.RowGroup.
Rows
;
675
rowGroup.
Rows
.Add(row);
1006
startRow = startRowGroup.
Rows
[0];
1020
endRow = endRowGroup.
Rows
[endRowGroup.
Rows
.Count - 1];
1145
int insertionIndex = rowGroup.
Rows
.IndexOf(currentRow);
1189
rowGroup.
Rows
.Insert(insertionIndex, newRow);
1204
CorrectBorders(rowGroup.
Rows
);
1232
TableRowCollection rows = startRow.RowGroup.
Rows
;
1368
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1370
TableRow row = rowGroup.
Rows
[iRow];
1413
CorrectBorders(rowGroup.
Rows
);
1489
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1491
TableRow row = rowGroup.
Rows
[iRow];
1523
CorrectBorders(rowGroup.
Rows
);
1935
CorrectBorders(rowGroup.
Rows
);
2366
if (topRow >= rowGroup.
Rows
.Count || bottomRow >= rowGroup.
Rows
.Count)
2372
if (rowGroup.
Rows
[topRow].ColumnCount != rowGroup.
Rows
[bottomRow].ColumnCount)
2378
if (leftColumn >= rowGroup.
Rows
[topRow].ColumnCount || rightColumn >= rowGroup.
Rows
[bottomRow].ColumnCount)
2384
TableCell[] spannedCells = rowGroup.
Rows
[topRow].SpannedCells;
2404
if (!GetBoundaryCells(rowGroup.
Rows
[rowIndex], bottomRow, leftColumn, rightColumn, out firstCell, out lastCell))
2428
TableRow row = rowGroup.
Rows
[rowIndex];
2488
row.RowGroup.
Rows
.Remove(row);
2502
CorrectBorders(rowGroup.
Rows
);
System\windows\Documents\TextSelection.cs (4)
1060
if (nextRowIndex < rowGroup.
Rows
.Count)
1062
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1071
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1387
TextPointer cellStart = table.RowGroups[0].
Rows
[0].Cells[0].ContentStart;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5883
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.TableRowGroup)target).
Rows
; };
System\Windows\Markup\KnownTypes.cs (1)
2532
case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).
Rows
;