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