69 references to Rows
PresentationFramework (69)
MS\Internal\PtsHost\RowParagraph.cs (3)
111
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)
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)
270
if(rowGroup.
Rows
.Count > 0)
272
tableRow = rowGroup.
Rows
[0];
322
if (nextRowIndex < currentRowGroup.
Rows
.Count)
324
Debug.Assert(currentRowGroup.
Rows
[nextRowIndex].Index != -1,
327
tableRow = currentRowGroup.
Rows
[nextRowIndex];
337
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)
307
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
327
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)
74
Rows
.Add(row);
119
return
Rows
.Count > 0;
207
for (int i = 0; i <
Rows
.Count; ++i)
209
Rows
[i].ValidateStructure(rowSpanVector);
211
_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
;
673
rowGroup.
Rows
.Add(row);
1004
startRow = startRowGroup.
Rows
[0];
1018
endRow = endRowGroup.
Rows
[endRowGroup.
Rows
.Count - 1];
1143
int insertionIndex = rowGroup.
Rows
.IndexOf(currentRow);
1187
rowGroup.
Rows
.Insert(insertionIndex, newRow);
1202
CorrectBorders(rowGroup.
Rows
);
1230
TableRowCollection rows = startRow.RowGroup.
Rows
;
1366
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1368
TableRow row = rowGroup.
Rows
[iRow];
1411
CorrectBorders(rowGroup.
Rows
);
1487
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1489
TableRow row = rowGroup.
Rows
[iRow];
1521
CorrectBorders(rowGroup.
Rows
);
1933
CorrectBorders(rowGroup.
Rows
);
2364
if (topRow >= rowGroup.
Rows
.Count || bottomRow >= rowGroup.
Rows
.Count)
2370
if (rowGroup.
Rows
[topRow].ColumnCount != rowGroup.
Rows
[bottomRow].ColumnCount)
2376
if (leftColumn >= rowGroup.
Rows
[topRow].ColumnCount || rightColumn >= rowGroup.
Rows
[bottomRow].ColumnCount)
2382
TableCell[] spannedCells = rowGroup.
Rows
[topRow].SpannedCells;
2402
if (!GetBoundaryCells(rowGroup.
Rows
[rowIndex], bottomRow, leftColumn, rightColumn, out firstCell, out lastCell))
2426
TableRow row = rowGroup.
Rows
[rowIndex];
2486
row.RowGroup.
Rows
.Remove(row);
2500
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)
5881
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
;