8 references to RecordCount
System.Data (8)
fx\src\data\System\Data\DataView.cs (3)
301
return (((null != index) ? index.
RecordCount
: 0) + ((null != addNewRow) ? 1 : 0));
1266
if (recordIndex == index.
RecordCount
)
1297
if (addNewRow != null && index.
RecordCount
== 0) { // Microsoft : 83032 Clear the newly added row as the underlying index is reset.
fx\src\data\System\Data\Select.cs (5)
458
if (index.
RecordCount
== 0)
463
range = new Range(0, index.
RecordCount
-1);
633
int hi = index.
RecordCount
- 1;
647
int hi = index.
RecordCount
- 1;
661
return new Range(0, index.
RecordCount
-1);