Sdl.MultiTerm.TMO.Interop.EntryIndexes class
Name
Sdl.MultiTerm.TMO.Interop.EntryIndexes — Provides programmatic access to the indexes contained in a particular entry.
Description
Via this class you can retrieve the indexes (i.e. languages) and terms contained in a selected entry.
Properties
- Count: Returns the number of indexes contained in a particular entry.
- Item: Refers to a particular entry index.
Methods
- Add: Adds an index to the collection.
Sample
Termbase oTb = oTbs["Termbase name"];
Entries oEntries = oTb.Entries;
Entry oEntry = oEntries.Item(1);
EntryIndexes oIndexes = oEntry.Content.EntryIndexes;
for(int i=0;i<oIndexes.Count;i++)
{
Debug.WriteLine(oIndexes[i].IndexName + ": " + oIndexes[i].Term);
}