property tag

(r/o) string tag;

Typ

Zugriff

This protperty returns the tag of the resource. The current values are:
var lib = scene.importLibrary("box://app/theme/goldTheme.box");
if (lib)
{
    var res = lib.firstResource;
    while (res)
    {
        shell.print("Resource Tag: " + res.tag);
        res = lib.nextResource;
    }
}