Item method
Name
Sdl.MultiTerm.TMO.Interop.Entries.Item — Refers to a particular entry.
Returntype
Sdl.MultiTerm.TMO.Interop.Entry
Parameters
- EntryID (Long)
Description
Via this property you can retrieve a particular entry, e.g. to output the entire entry content. As parameter you need to provide the entry id of the corresponding entry.
Sample
//select termbase
Termbase oTb = oTbs["Termbase name"];
Entries oEntries = oTb.Entries;
//retrieve a particular entry
Entry oEntry = oEntries.Item(1);
//return full entry content
Debug.Write(oEntry.Content.Content);