2 captures
30 Mar 2016 - 17 Jun 2018
Mar JUN Jul
17
2016 2018 2019
success
fail
About this capture

11.1.1.2.8. Recordsยถ

This represents a collection of Record objects (translation memories and glossaries are both represented by this object).

11.1.1.2.8.1. Propertiesยถ

Name Type Access Description
Count Int Get The number of items in the collection

11.1.1.2.8.2. Methodsยถ

Name Arguments Description
Item Int n Gets the Record at index n (1`based)

11.1.1.2.8.3. Exampleยถ

Note that since this is a collection, you can iterate over it in Visual Basic and other languages.

From Visual Basic:

Dim record As Object
For Each record In mem.Records
    Debug.Print record.Source
Next record