RC-WinTrans Object Model Help |
ProjectFile.IsUpToDate
|
Returns whether the project file for the given target language is up-to-date. "Up-to-date" means that the source file matches the data saved in the database for the given target language.
Syntax: |
IsUpToDate(TargetLanguage As String) As Boolean |
| Return: | 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.IsUpToDate("fr")
|
See also: