RC-WinTrans Object Model Help |
ProjectFile.IsTargetFileUpToDate |
Returns whether the default target file for the given target language is up-to-date. This means that the corresponding target file with the default path matches the actual translation of the project file with the given target language.
Syntax: |
IsTargetFileUpToDate(TargetLanguage As String) As Boolean |
Parameters: |
TargetLanguage Target language to be checked for up-to-dateness.
|
Example: | Dim ProjFile As ProjectFile Dim UpToDate As Boolean Set ProjFile = Application.ActiveProjectFile UpToDate = ProjFile.IsTargetFileUpToDate("fr") |
See also: