Search Results for

    Show / Hide Table of Contents

    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:

    • C#
    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.

    See Also

    Setting the Project Information

    • Improve this Doc
    In this article
    • See Also
    Back to top Generated by DocFX