Search Results for

    Show / Hide Table of Contents

    Save method

    Name

    Sdl.MultiTerm.TMO.Interop.InputModelDefinition.Save — Saves the input model definition to an external file.

    Returntype

    void

    Parameters

    • FileName (String)

    Description

    Applying this method to a particular input model saves the content of the input model definition to an external file. Note that you need to provide the file path and name as well as the extension (*.xdm) as parameter.

    Sample

    //select termbase
    Termbase oTb = oTbs["Termbase name"];
    
    //select input model
    InputModelDefinitions oInputModels = oTb.InputModelDefinitions;
    InputModelDefinition oInputModel = oInputModels["My own input model"];
    oInputModel.Save("c:\\temp\\input_model.xdm");
    
    • Improve this Doc
    In this article
    Back to top Generated by DocFX