69 references to Rows
PresentationFramework (69)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (3)
121
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
271
bool lastRow = Row.Index == Row.RowGroup.
Rows
.Count - 1;
347
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.
Rows
.Count - 1);
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (2)
619
if (row.Index == row.RowGroup.
Rows
.Count - 1)
1452
(row.Index == row.RowGroup.
Rows
.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index);
src\Framework\MS\Internal\PtsHost\TableParagraph.cs (6)
282
if(rowGroup.
Rows
.Count > 0)
284
tableRow = rowGroup.
Rows
[0];
334
if (nextRowIndex < currentRowGroup.
Rows
.Count)
336
Debug.Assert(currentRowGroup.
Rows
[nextRowIndex].Index != -1,
339
tableRow = currentRowGroup.
Rows
[nextRowIndex];
349
TableRowCollection Rows = Table.RowGroups[nextRowGroupIndex].
Rows
;
src\Framework\System\Windows\Automation\Peers\TableAutomationPeer.cs (4)
99
rows += group.
Rows
.Count;
143
if (currentRow + group.
Rows
.Count < row)
145
currentRow += group.
Rows
.Count;
149
foreach (TableRow tableRow in group.
Rows
)
src\Framework\System\Windows\Documents\Table.cs (2)
324
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
344
if(RowGroups[rowGroupIndex].
Rows
.Count > 0)
src\Framework\System\Windows\Documents\TableRow.cs (2)
119
((TableRowGroup)oldParent).
Rows
.InternalRemove(this);
126
((TableRowGroup)newParent).
Rows
.InternalAdd(this);
src\Framework\System\Windows\Documents\TableRowGroup.cs (5)
100
Rows
.Add(row);
145
return
Rows
.Count > 0;
233
for (int i = 0; i <
Rows
.Count; ++i)
235
Rows
[i].ValidateStructure(rowSpanVector);
237
_columnCount = Math.Max(_columnCount,
Rows
[i].ColumnCount);
src\Framework\System\windows\Documents\TextEditorTyping.cs (10)
1445
int rowIndex = body.
Rows
.IndexOf(row);
1449
if (rowIndex + 1 < body.
Rows
.Count)
1451
cell = body.
Rows
[rowIndex + 1].Cells[0];
1458
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
1482
int rowIndex = body.
Rows
.IndexOf(row);
1490
else if (rowIndex + 1 < body.
Rows
.Count)
1492
cell = body.
Rows
[rowIndex + 1].Cells[0];
1507
cell = body.
Rows
[rowIndex - 1].Cells[body.
Rows
[rowIndex - 1].Cells.Count - 1];
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (29)
345
for (int rowIndex = firstRowIndex; rowIndex <= lastRowIndex && rowIndex < rowGroup.
Rows
.Count; rowIndex++)
347
TableCellCollection cells = rowGroup.
Rows
[rowIndex].Cells;
471
TableRowCollection rows = row.RowGroup.
Rows
;
678
rowGroup.
Rows
.Add(row);
1009
startRow = startRowGroup.
Rows
[0];
1023
endRow = endRowGroup.
Rows
[endRowGroup.
Rows
.Count - 1];
1148
int insertionIndex = rowGroup.
Rows
.IndexOf(currentRow);
1192
rowGroup.
Rows
.Insert(insertionIndex, newRow);
1207
CorrectBorders(rowGroup.
Rows
);
1235
TableRowCollection rows = startRow.RowGroup.
Rows
;
1371
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1373
TableRow row = rowGroup.
Rows
[iRow];
1416
CorrectBorders(rowGroup.
Rows
);
1492
for (int iRow = 0; iRow < rowGroup.
Rows
.Count; iRow++)
1494
TableRow row = rowGroup.
Rows
[iRow];
1526
CorrectBorders(rowGroup.
Rows
);
1938
CorrectBorders(rowGroup.
Rows
);
2369
if (topRow >= rowGroup.
Rows
.Count || bottomRow >= rowGroup.
Rows
.Count)
2375
if (rowGroup.
Rows
[topRow].ColumnCount != rowGroup.
Rows
[bottomRow].ColumnCount)
2381
if (leftColumn >= rowGroup.
Rows
[topRow].ColumnCount || rightColumn >= rowGroup.
Rows
[bottomRow].ColumnCount)
2387
TableCell[] spannedCells = rowGroup.
Rows
[topRow].SpannedCells;
2407
if (!GetBoundaryCells(rowGroup.
Rows
[rowIndex], bottomRow, leftColumn, rightColumn, out firstCell, out lastCell))
2431
TableRow row = rowGroup.
Rows
[rowIndex];
2491
row.RowGroup.
Rows
.Remove(row);
2505
CorrectBorders(rowGroup.
Rows
);
src\Framework\System\windows\Documents\TextSelection.cs (4)
1063
if (nextRowIndex < rowGroup.
Rows
.Count)
1065
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1074
nextCell = FindCellAtColumnIndex(rowGroup.
Rows
[nextRowIndex].Cells, movingCell.ColumnIndex);
1390
TextPointer cellStart = table.RowGroups[0].
Rows
[0].Cells[0].ContentStart;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5841
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.TableRowGroup)target).
Rows
; };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
2525
case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).
Rows
;