69 references to Rows
PresentationFramework (69)
MS\Internal\PtsHost\RowParagraph.cs (3)
111
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
253
bool lastRow = Row.Index == Row.RowGroup.
Rows
.Count - 1;
329
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
MS\Internal\PtsHost\TableParaClient.cs (2)
570
if (row.Index == row.RowGroup.
Rows
.Count - 1)
1355
(row.Index == row.RowGroup.
Rows
.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index);
MS\Internal\PtsHost\TableParagraph.cs (6)
265
if(rowGroup.
Rows
.Count > 0)
267
tableRow = rowGroup.
Rows
[0];
317
if (nextRowIndex < currentRowGroup.
Rows
.Count)
319
Debug.Assert(currentRowGroup.
Rows
[nextRowIndex].Index != -1,
322
tableRow = currentRowGroup.
Rows
[nextRowIndex];
332
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)
299
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
319
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
System\Windows\Documents\TableRow.cs (2)
95
((TableRowGroup)oldParent).
Rows
.InternalRemove(this);
102
((TableRowGroup)newParent).
Rows
.InternalAdd(this);
System\Windows\Documents\TableRowGroup.cs (5)
63
Rows
.Add(row);
108
return
Rows
.Count > 0;
196
for (int i = 0; i <
Rows
.Count; ++i)
198
Rows
[i].ValidateStructure(rowSpanVector);
200
_columnCount = Math.Max(_columnCount,
Rows
[i].ColumnCount);
System\windows\Documents\TextEditorTyping.cs (10)
1419
int rowIndex = body.
Rows
.IndexOf(row);
1423
if (rowIndex + 1 < body.
Rows
.Count)
1425
cell = body.
Rows
[rowIndex + 1].Cells[0];
1432
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
1456
int rowIndex = body.
Rows
.IndexOf(row);
1464
else if (rowIndex + 1 < body.
Rows
.Count)
1466
cell = body.
Rows
[rowIndex + 1].Cells[0];
1481
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
System\Windows\Documents\TextRangeEditTables.cs (29)
340
for (int rowIndex = firstRowIndex; rowIndex <= lastRowIndex && rowIndex < rowGroup.
Rows
.Count; rowIndex++)
342
TableCellCollection cells = rowGroup.
Rows
[rowIndex].Cells;
466
TableRowCollection rows = row.RowGroup.
Rows
;
677
rowGroup.
Rows
.Add(row);
1008
startRow = startRowGroup.
Rows
[0];
1022
endRow = endRowGroup.
Rows
[endRowGroup.
Rows
.Count - 1];
1147
int insertionIndex = rowGroup.
Rows
.IndexOf(currentRow);
1191
rowGroup.
Rows
.Insert(insertionIndex, newRow);
1206
CorrectBorders(rowGroup.
Rows
);
1234
TableRowCollection rows = startRow.RowGroup.
Rows
;
1370
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1372
TableRow row = rowGroup.
Rows
[iRow];
1415
CorrectBorders(rowGroup.
Rows
);
1491
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1493
TableRow row = rowGroup.
Rows
[iRow];
1525
CorrectBorders(rowGroup.
Rows
);
1937
CorrectBorders(rowGroup.
Rows
);
2368
if (topRow >= rowGroup.
Rows
.Count || bottomRow >= rowGroup.
Rows
.Count)
2374
if (rowGroup.
Rows
[topRow].ColumnCount != rowGroup.
Rows
[bottomRow].ColumnCount)
2380
if (leftColumn >= rowGroup.
Rows
[topRow].ColumnCount || rightColumn >= rowGroup.
Rows
[bottomRow].ColumnCount)
2386
TableCell[] spannedCells = rowGroup.
Rows
[topRow].SpannedCells;
2406
if (!GetBoundaryCells(rowGroup.
Rows
[rowIndex], bottomRow, leftColumn, rightColumn, out firstCell, out lastCell))
2430
TableRow row = rowGroup.
Rows
[rowIndex];
2490
row.RowGroup.
Rows
.Remove(row);
2504
CorrectBorders(rowGroup.
Rows
);
System\windows\Documents\TextSelection.cs (4)
1057
if (nextRowIndex < rowGroup.
Rows
.Count)
1059
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1068
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1384
TextPointer cellStart = table.RowGroups[0].
Rows
[0].Cells[0].ContentStart;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6292
GetDelegate = delegate (object target) { return ((System.Windows.Documents.TableRowGroup)target).
Rows
; },
System\Windows\Markup\KnownTypes.cs (1)
2526
case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).
Rows
;