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.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