Save the document in the Job.

syntaxSyntax:
DlxDocument.Store()

Return Value

If the operation ends correctly it returns true otherwise it returns false.

Remarks

Closing a document and saving the data in the Job does not automatically save the data to disk. To make the changes effective in the file on the disk you must save the Job.

Example

  Copy codeCopy code
var doc = DlxApp.GetJob().FindDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (doc.IsOpen())
{
  doc.Store();
  doc.Close();
}

See also