Skip to main content
Skip table of contents

isSuccessful (PresentationUtils)

Versionshinweise

22.1, 21.2.06, 21.1.11

Code

GROOVY
boolean isSuccessful(IPresentationResult result)

Beschreibung

Prüft, ob das Öffnen der Präsentationsdatei erfolgreich war.


Parameter

  • result

    Ergebnis des Öffnens der Präsentationsdatei.

Rückgabe
Liefert true, falls das Öffnen der Präsentationsdatei erfolgreich war.

Beispiele

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

if (!PresentationUtils.isSuccessful(openResult))
{
	String errorCode = PresentationUtils.getErrorCode(openResult);
	/** handle error code */
    return;
}
...
JavaScript errors detected

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

If this problem persists, please contact our support.