propertyDepth

記述

app.project.item(index).layer(index).propertySpec.propertyDepth

概要

このプロパティとこのプロパティを含むレイヤーの間のペアレントグループの階層数。レイヤーの場合は値が0になります。

タイプ

Integer(整数値) - 読み込み専用

ノート

エフェクトを指定した例。この場合、2つの階層があるので値は2になります。

var myEffect= app.project.item(1).layer(1).property("effect").property(1)

alert(myEffect.propertyDepth)

この場合、構文の記述にproperty()はありませんが、同じく2つの階層で値は2になります。

var myProp= app.project.item(1).layer(1).transform.scale

alert(myProp.propertyDepth)

レイヤーのpropertyDepth。この場合、値は0になります。

var myLayer= app.project.item(1).layer(1)

alert(myLayer.propertyDepth)