11.1.1.2.3. Memoriesยถ
This represents a collection of Memory objects (translation memories and glossaries are both represented by this object).
11.1.1.2.3.1. Propertiesยถ
| Name | Type | Access | Description |
|---|---|---|---|
| Count | Int | Get | The number of items in the collection |
11.1.1.2.3.2. Methodsยถ
| Name | Arguments | Description |
|---|---|---|
| Item | Int n | Gets the Memory at index n |
| Add | none | Adds a Memory to the collection and returns it |
| Load | String Location | Loads a Memory at location Location, and returns it |
| Clear | none | Empties the collection |
11.1.1.2.3.3. Exampleยถ
Note that since this is a collection, you can iterate over it in Visual Basic and other languages.
From Visual Basic:
Dim mem As Object
For Each mem In Felix.App2.Memories
Debug.Print mem.CreatedOn
Next mem