refresh

Syntax

ManagedArticle.refresh();

Parameters

Return value

The refresh() method does not return a value.

Description

The refresh() method updates the content of the placed Article with the latest version from Studio Server.

Examples

Refresh the content of the first managed article

// Refresh the first managed article in the active document.
var articles = app.activeDocument.managedArticles;
if (articles.count() > 0) {
    articles[0].refresh();
}

Supported versions

Adobe Version Supported
2023
2024
2025
2026