Implemented interface members:
25 references to Count
PresentationFramework (25)
MS\Internal\PtsHost\RowParagraph.cs (4)
232Invariant.Assert(cCells >= Row.Cells.Count); // Protect against buffer overflow 238for (int j = 0; j < Row.Cells.Count; ++j) 303_cellParagraphs = new CellParagraph[Row.Cells.Count]; 305for(int cellIndex = 0; cellIndex < Row.Cells.Count; cellIndex++)
System\Windows\Documents\TableRow.cs (3)
215for (int i = 0; i < _cells.Count; ++i) 260Debug.Assert(_cells.Count <= _formatCellCount); 302return (Cells.Count > 0);
System\windows\Documents\TextEditorTyping.cs (3)
1441cell = body.Rows[rowIndex - 1].Cells[body.Rows[rowIndex - 1].Cells.Count - 1]; 1469if (cellIndex + 1 < row.Cells.Count) 1490cell = body.Rows[rowIndex - 1].Cells[body.Rows[rowIndex - 1].Cells.Count - 1];
System\Windows\Documents\TextRangeEditTables.cs (14)
349for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++) 458anchorCell.Index == 0 && movingCell.Index == movingCell.Row.Cells.Count - 1 && movingCell.Row.Index + 1 == anchorCell.Row.Index)) 471if (movingCell.Index + 1 < cells.Count) 482while (rowIndex < rows.Count && rows[rowIndex].Cells.Count == 0) 509while (rowIndex >= 0 && rows[rowIndex].Cells.Count == 0) 516movingCell = rows[rowIndex].Cells[rows[rowIndex].Cells.Count - 1]; 1170for (int i = 0; i < cells.Count; i++) 1284for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++) 1329while (cellIndex < nextRowCells.Count && nextRowCells[cellIndex].ColumnIndex < columnIndex) 1383for (int iCell = 0; iCell < row.Cells.Count; iCell++) 1494for (int iCell = 0; iCell < row.Cells.Count; iCell++) 2107movingCell = movingCellRow.Cells[movingCellRow.Cells.Count - 1]; 2464if (firstCell.Index == 0 && lastCell.Index == lastCell.Row.Cells.Count - 1) 2515for (int cellIndex = 0; cellIndex < row.Cells.Count; cellIndex++)
System\windows\Documents\TextSelection.cs (1)
2517for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++)