CasewareDocs

RecordCount

Gets or sets the number of records of the IDEA database with the specified Id.

Compatibility

Available as of IDEA version 9.1.1

Syntax

RecordCount()

Remarks

If the record count is not known, the caller should set RecordCount to -1, which is also the default value of this property.

Example

Sub Main 
Dim resultFile As Object
Set resultFile = SmartContext.TestResultFiles.Create

resultFile.RecordCount = 7239

SmartContext.TestResultFiles.Add resultFile
End Sub