entMetaData

Syntax

ManagedLayoutModule.entMetaData;

Access

readonly

Parameters

Return value EntMetaData

The Studio Server metadata object associated with the ManagedLayoutModule.

Description

The entMetaData property returns an EntMetaData object that provides access to the Studio Server metadata associated with the ManagedLayoutModule. Use this object to read metadata values such as the layout module name, brand, and status.

Examples

Read the name of the first managed layout module

// Get the metadata of the first managed layout module in the active document.
var modules = app.activeDocument.managedLayoutModules;
if (modules.count() > 0) {
    var module = modules[0];
    var name = module.entMetaData.get("Core_Name");
    alert("Layout module name: " + name);
}

Supported versions

Adobe Version Supported
2023
2024
2025
2026

See also