Saves changes to the specified document.
This method doesn't have any parameters.
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oParagraph = oDocument.GetElement(0); oParagraph.AddText("This sample text is saved to the document."); Api.Save(); builder.SaveFile("docx", "Save.docx"); builder.CloseFile();