Skip to main content
Skip table of contents

save (PresentationUtils)

Versionshinweise

22.1, 21.2.06, 21.1.11

Code

GROOVY
save(PresentationDocument document)

Beschreibung

Speichert die übergebene Präsentationsdatei.


Parameter

  • document

    Repräsentiert die Präsentationsdatei

Beispiele

GROOVY
IPresentationResult openResult = PresentationUtils.openFile("C:\\Work\\myFirstPresentation.ppsx");

if (!PresentationUtils.isSuccessful(openResult))
{
	/** handle error code */
    return;
}

PresentationDocument presentation = null;
try
{
  presentation = PresentationUtils.getPresentationDocument(openResult);
  ...
  PresentationUtils.save(presentation);
}
finally
{
  PresentationUtils.close(presentation);
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.