Implemented interface members:
property
Count
System.Collections.Generic.ICollection<T>.Count
property
Count
System.Collections.ICollection.Count
25 references to Count
PresentationFramework (25)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (4)
247Invariant.Assert(cCells >= Row.Cells.Count); // Protect against buffer overflow 253for (int j = 0; j < Row.Cells.Count; ++j) 318_cellParagraphs = new CellParagraph[Row.Cells.Count]; 320for(int cellIndex = 0; cellIndex < Row.Cells.Count; cellIndex++)
src\Framework\System\Windows\Documents\TableRow.cs (3)
224for (int i = 0; i < _cells.Count; ++i) 269Debug.Assert(_cells.Count <= _formatCellCount); 311return (Cells.Count > 0);
src\Framework\System\windows\Documents\TextEditorTyping.cs (3)
1458cell = body.Rows[rowIndex - 1].Cells[body.Rows[rowIndex - 1].Cells.Count - 1]; 1486if (cellIndex + 1 < row.Cells.Count) 1507cell = body.Rows[rowIndex - 1].Cells[body.Rows[rowIndex - 1].Cells.Count - 1];
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (14)
352for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++) 461anchorCell.Index == 0 && movingCell.Index == movingCell.Row.Cells.Count - 1 && movingCell.Row.Index + 1 == anchorCell.Row.Index)) 474if (movingCell.Index + 1 < cells.Count) 485while (rowIndex < rows.Count && rows[rowIndex].Cells.Count == 0) 512while (rowIndex >= 0 && rows[rowIndex].Cells.Count == 0) 519movingCell = rows[rowIndex].Cells[rows[rowIndex].Cells.Count - 1]; 1173for (int i = 0; i < cells.Count; i++) 1287for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++) 1332while (cellIndex < nextRowCells.Count && nextRowCells[cellIndex].ColumnIndex < columnIndex) 1386for (int iCell = 0; iCell < row.Cells.Count; iCell++) 1497for (int iCell = 0; iCell < row.Cells.Count; iCell++) 2110movingCell = movingCellRow.Cells[movingCellRow.Cells.Count - 1]; 2467if (firstCell.Index == 0 && lastCell.Index == lastCell.Row.Cells.Count - 1) 2518for (int cellIndex = 0; cellIndex < row.Cells.Count; cellIndex++)
src\Framework\System\windows\Documents\TextSelection.cs (1)
2530for (int cellIndex = 0; cellIndex < cells.Count; cellIndex++)