dict.cc dictionary

DictIndex Constructor 

Reads index from the given index file

[Visual Basic]
Public Sub New( _
   ByVal anIdxFileName As String, _
   ByVal aProgressHandler As IProgress _
)
[C#]
public DictIndex(
   string anIdxFileName,
   IProgress aProgressHandler
);

Parameters

anIdxFileName
The name of the index file from which to read the dictionary index
aProgressHandler
For showing progress of the index reading process

Remarks

Reading is performed in the background thread. The format of the index file is described by DictImport.saveIdx(). The constructor initializes an empty dictionary index and starts readObj() in a background thread in order to read the index file. Reading can be always interrupted using stop(), but in this case the dictionary index object is left in an inconsistent state and it is unusable.

See Also

DictIndex Class | dict Namespace | DictImport.saveIdx