Packagejp.progression.commands.lists
Interfacepublic interface IRepeatable extends flash.events.IEventDispatcher
ImplementorsLoopList, ShuttleList

IRepeatable インターフェイスは、対象のコマンドに対してループ処理操作を実装します。


Example
  



Public Properties
 PropertyDefined by
  count : int
[read-only] 現在のループ処理回数を取得します。
IRepeatable
  repeatCount : int
実行したいループ処理数を取得または設定します。 この値が 0 に設定されている場合には、stop() メソッドで終了させるまで処理し続けます。 コマンド実行中に値を変更しても、処理に対して反映されません。
IRepeatable
Public Methods
 MethodDefined by
  
stop():void
実行中のループ処理を停止させます。
IRepeatable
Property detail
countproperty
count:int  [read-only]

現在のループ処理回数を取得します。

Implementation
    public function get count():int

See also

repeatCountproperty 
repeatCount:int  [read-write]

実行したいループ処理数を取得または設定します。 この値が 0 に設定されている場合には、stop() メソッドで終了させるまで処理し続けます。 コマンド実行中に値を変更しても、処理に対して反映されません。

Implementation
    public function get repeatCount():int
    public function set repeatCount(value:int):void

See also

Method detail
stop()method
public function stop():void

実行中のループ処理を停止させます。

See also