69 references to Rows
PresentationFramework (69)
MS\Internal\PtsHost\RowParagraph.cs (3)
110
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
252
bool lastRow = Row.Index == Row.RowGroup.
Rows
.Count - 1;
328
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
MS\Internal\PtsHost\TableParaClient.cs (2)
569
if (row.Index == row.RowGroup.
Rows
.Count - 1)
1354
(row.Index == row.RowGroup.
Rows
.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index);
MS\Internal\PtsHost\TableParagraph.cs (6)
264
if(rowGroup.
Rows
.Count > 0)
266
tableRow = rowGroup.
Rows
[0];
316
if (nextRowIndex < currentRowGroup.
Rows
.Count)
318
Debug.Assert(currentRowGroup.
Rows
[nextRowIndex].Index != -1,
321
tableRow = currentRowGroup.
Rows
[nextRowIndex];
331
TableRowCollection Rows = Table.RowGroups[nextRowGroupIndex].
Rows
;
System\Windows\Automation\Peers\TableAutomationPeer.cs (4)
97
rows += group.
Rows
.Count;
137
if (currentRow + group.
Rows
.Count < row)
139
currentRow += group.
Rows
.Count;
143
foreach (TableRow tableRow in group.
Rows
)
System\Windows\Documents\Table.cs (2)
295
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
315
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
System\Windows\Documents\TableRow.cs (2)
94
((TableRowGroup)oldParent).
Rows
.InternalRemove(this);
101
((TableRowGroup)newParent).
Rows
.InternalAdd(this);
System\Windows\Documents\TableRowGroup.cs (5)
62
Rows
.Add(row);
107
return
Rows
.Count > 0;
192
for (int i = 0; i <
Rows
.Count; ++i)
194
Rows
[i].ValidateStructure(rowSpanVector);
196
_columnCount = Math.Max(_columnCount,
Rows
[i].ColumnCount);
System\windows\Documents\TextEditorTyping.cs (10)
1406
int rowIndex = body.
Rows
.IndexOf(row);
1410
if (rowIndex + 1 < body.
Rows
.Count)
1412
cell = body.
Rows
[rowIndex + 1].Cells[0];
1419
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
1443
int rowIndex = body.
Rows
.IndexOf(row);
1451
else if (rowIndex + 1 < body.
Rows
.Count)
1453
cell = body.
Rows
[rowIndex + 1].Cells[0];
1468
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
System\Windows\Documents\TextRangeEditTables.cs (29)
339
for (int rowIndex = firstRowIndex; rowIndex <= lastRowIndex && rowIndex < rowGroup.
Rows
.Count; rowIndex++)
341
TableCellCollection cells = rowGroup.
Rows
[rowIndex].Cells;
465
TableRowCollection rows = row.RowGroup.
Rows
;
676
rowGroup.
Rows
.Add(row);
1007
startRow = startRowGroup.
Rows
[0];
1021
endRow = endRowGroup.
Rows
[endRowGroup.
Rows
.Count - 1];
1146
int insertionIndex = rowGroup.
Rows
.IndexOf(currentRow);
1190
rowGroup.
Rows
.Insert(insertionIndex, newRow);
1205
CorrectBorders(rowGroup.
Rows
);
1233
TableRowCollection rows = startRow.RowGroup.
Rows
;
1369
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1371
TableRow row = rowGroup.
Rows
[iRow];
1414
CorrectBorders(rowGroup.
Rows
);
1490
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1492
TableRow row = rowGroup.
Rows
[iRow];
1524
CorrectBorders(rowGroup.
Rows
);
1936
CorrectBorders(rowGroup.
Rows
);
2367
if (topRow >= rowGroup.
Rows
.Count || bottomRow >= rowGroup.
Rows
.Count)
2373
if (rowGroup.
Rows
[topRow].ColumnCount != rowGroup.
Rows
[bottomRow].ColumnCount)
2379
if (leftColumn >= rowGroup.
Rows
[topRow].ColumnCount || rightColumn >= rowGroup.
Rows
[bottomRow].ColumnCount)
2385
TableCell[] spannedCells = rowGroup.
Rows
[topRow].SpannedCells;
2405
if (!GetBoundaryCells(rowGroup.
Rows
[rowIndex], bottomRow, leftColumn, rightColumn, out firstCell, out lastCell))
2429
TableRow row = rowGroup.
Rows
[rowIndex];
2489
row.RowGroup.
Rows
.Remove(row);
2503
CorrectBorders(rowGroup.
Rows
);
System\windows\Documents\TextSelection.cs (4)
1041
if (nextRowIndex < rowGroup.
Rows
.Count)
1043
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1052
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1368
TextPointer cellStart = table.RowGroups[0].
Rows
[0].Cells[0].ContentStart;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6291
GetDelegate = delegate (object target) { return ((System.Windows.Documents.TableRowGroup)target).
Rows
; },
System\Windows\Markup\KnownTypes.cs (1)
2525
case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).
Rows
;