Implemented interface members:
property
Count
System.Collections.Generic.ICollection<T>.Count
property
Count
System.Collections.ICollection.Count
30 references to Count
PresentationFramework (30)
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 (3)
282if(rowGroup.Rows.Count > 0) 334if (nextRowIndex < currentRowGroup.Rows.Count) 351if (Rows.Count > 0)
src\Framework\System\Windows\Automation\Peers\TableAutomationPeer.cs (3)
99rows += group.Rows.Count; 143if (currentRow + group.Rows.Count < row) 145currentRow += group.Rows.Count;
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\TableRowGroup.cs (2)
145return Rows.Count > 0; 233for (int i = 0; i < Rows.Count; ++i)
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1449if (rowIndex + 1 < body.Rows.Count) 1490else if (rowIndex + 1 < body.Rows.Count)
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (12)
345for (int rowIndex = firstRowIndex; rowIndex <= lastRowIndex && rowIndex < rowGroup.Rows.Count; rowIndex++) 485while (rowIndex < rows.Count && rows[rowIndex].Cells.Count == 0) 490if (rowIndex < rows.Count) 1023endRow = endRowGroup.Rows[endRowGroup.Rows.Count - 1]; 1238if (deletedRowsCount == rows.Count) 1246bool lastRowDeleted = endRow.Index == rows.Count - 1; 1256Invariant.Assert(rows.Count > 0); 1281int rowCount = rows.Count; 1371for (int iRow = 0; iRow < rowGroup.Rows.Count; iRow++) 1492for (int iRow = 0; iRow < rowGroup.Rows.Count; iRow++) 2369if (topRow >= rowGroup.Rows.Count || bottomRow >= rowGroup.Rows.Count)
src\Framework\System\windows\Documents\TextSelection.cs (1)
1063if (nextRowIndex < rowGroup.Rows.Count)