Returns whether the project has been modified and not saved yet.

Syntax:

IsModified() As Boolean
Example:
Dim Proj As TranslationProject
Dim RetVal As Boolean

Set Proj = Application.ActiveProject

If (Not (Proj Is Nothing)) Then
	RetVal = Proj.IsModified
End If

See also:

Class TranslationProject


Last Updated: 07/26/05