Instance Property
インスタンスプロパティ
evaluatedReceivers
Returns the object or objects to which the command is to be sent (called both the “receivers” or “targets” of script commands).
それに対してコマンドが送られることになるオブジェクトまたは複数のオブジェクトを返します(スクリプトコマンドの “レシーバ” または “ターゲット” の両方で呼ばれます)。
Declaration
宣言
@property(nullable, readonly, retain) id evaluatedReceivers;
Discussion
議論
It evaluates receivers, which are always object specifiers, to a proper object. If the command does not specify a receiver, or if the receiver doesn’t accept the command, it returns nil
.
それは、常にオブジェクト指定子であるところのレシーバそれらを、ある適したオブジェクトに評価します。コマンドがレシーバを指定しないならば、またはレシーバがコマンドを受け入れないならば、それはnil
を返します。
See Also
参照
Accessing receivers
レシーバにアクセスする
receiversSpecifier
Sets the object specifier to receiversSpec
that, when evaluated, indicates the receiver or receivers of the command.
オブジェクト指定子をreceiversSpec
に設定します、評価されるとき、それはコマンドのレシーバまたは複数のレシーバを指し示します。