Completing Projects
Projects can change their states during the translation process. By using the complete functionality you can change for a project the state to completed.
All you need to do is to apply the Complete method to a specific file-based project object:
public void CompleteProject()
{
FileBasedProject project = new FileBasedProject(GetProjectInfo());
project.Complete();
}
You could use this method, for example, when you finished the translation for a project and you want to change the status in completed.