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)
121
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.
Count
- 1);
271
bool lastRow = Row.Index == Row.RowGroup.Rows.
Count
- 1;
347
bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.
Count
- 1);
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (2)
619
if (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)
282
if(rowGroup.Rows.
Count
> 0)
334
if (nextRowIndex < currentRowGroup.Rows.
Count
)
351
if (Rows.
Count
> 0)
src\Framework\System\Windows\Automation\Peers\TableAutomationPeer.cs (3)
99
rows += group.Rows.
Count
;
143
if (currentRow + group.Rows.
Count
< row)
145
currentRow += group.Rows.
Count
;
src\Framework\System\Windows\Documents\Table.cs (2)
324
if(RowGroups[rowGroupIndex].Rows.
Count
> 0)
344
if(RowGroups[rowGroupIndex].Rows.
Count
> 0)
src\Framework\System\Windows\Documents\TableRowGroup.cs (2)
145
return Rows.
Count
> 0;
233
for (int i = 0; i < Rows.
Count
; ++i)
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1449
if (rowIndex + 1 < body.Rows.
Count
)
1490
else if (rowIndex + 1 < body.Rows.
Count
)
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (12)
345
for (int rowIndex = firstRowIndex; rowIndex <= lastRowIndex && rowIndex < rowGroup.Rows.
Count
; rowIndex++)
485
while (rowIndex < rows.
Count
&& rows[rowIndex].Cells.Count == 0)
490
if (rowIndex < rows.
Count
)
1023
endRow = endRowGroup.Rows[endRowGroup.Rows.
Count
- 1];
1238
if (deletedRowsCount == rows.
Count
)
1246
bool lastRowDeleted = endRow.Index == rows.
Count
- 1;
1256
Invariant.Assert(rows.
Count
> 0);
1281
int rowCount = rows.
Count
;
1371
for (int iRow = 0; iRow < rowGroup.Rows.
Count
; iRow++)
1492
for (int iRow = 0; iRow < rowGroup.Rows.
Count
; iRow++)
2369
if (topRow >= rowGroup.Rows.
Count
|| bottomRow >= rowGroup.Rows.
Count
)
src\Framework\System\windows\Documents\TextSelection.cs (1)
1063
if (nextRowIndex < rowGroup.Rows.
Count
)