Implemented interface members:
25 references to Count
PresentationFramework (25)
MS\Internal\PtsHost\RowParagraph.cs (4)
228Invariant.Assert(cCells >= Row.Cells.Count); // Protect against buffer overflow 234for (int j = 0; j < Row.Cells.Count; ++j) 299_cellParagraphs = new CellParagraph[Row.Cells.Count]; 301for(int cellIndex = 0; cellIndex < Row.Cells.Count; cellIndex++)
System\Windows\Documents\TableRow.cs (3)
196for (int i = 0; i < _cells.Count; ++i) 241Debug.Assert(_cells.Count <= _formatCellCount); 283return (Cells.Count > 0);
System\windows\Documents\TextEditorTyping.cs (3)
1419cell = body.Rows[rowIndex - 1].Cells[body.Rows[rowIndex - 1].Cells.Count - 1]; 1447if (cellIndex + 1 < row.Cells.Count) 1468cell = body.Rows[rowIndex - 1].Cells[body.Rows[rowIndex - 1].Cells.Count - 1];
System\Windows\Documents\TextRangeEditTables.cs (14)
346for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++) 455anchorCell.Index == 0 && movingCell.Index == movingCell.Row.Cells.Count - 1 && movingCell.Row.Index + 1 == anchorCell.Row.Index)) 468if (movingCell.Index + 1 < cells.Count) 479while (rowIndex < rows.Count && rows[rowIndex].Cells.Count == 0) 506while (rowIndex >= 0 && rows[rowIndex].Cells.Count == 0) 513movingCell = rows[rowIndex].Cells[rows[rowIndex].Cells.Count - 1]; 1171for (int i = 0; i < cells.Count; i++) 1285for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++) 1330while (cellIndex < nextRowCells.Count && nextRowCells[cellIndex].ColumnIndex < columnIndex) 1384for (int iCell = 0; iCell < row.Cells.Count; iCell++) 1495for (int iCell = 0; iCell < row.Cells.Count; iCell++) 2108movingCell = movingCellRow.Cells[movingCellRow.Cells.Count - 1]; 2465if (firstCell.Index == 0 && lastCell.Index == lastCell.Row.Cells.Count - 1) 2516for (int cellIndex = 0; cellIndex < row.Cells.Count; cellIndex++)
System\windows\Documents\TextSelection.cs (1)
2500for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++)