| Package | jp.progression.commands.lists |
| Interface | public interface IRepeatable extends flash.events.IEventDispatcher |
| Implementors | LoopList, ShuttleList |
| Property | Defined by | ||
|---|---|---|---|
| count : int [read-only]
現在のループ処理回数を取得します。
| IRepeatable | ||
| repeatCount : int
実行したいループ処理数を取得または設定します。
この値が 0 に設定されている場合には、stop() メソッドで終了させるまで処理し続けます。
コマンド実行中に値を変更しても、処理に対して反映されません。
| IRepeatable | ||
| Method | Defined by | ||
|---|---|---|---|
|
stop():void
実行中のループ処理を停止させます。
| IRepeatable | ||
| count | property |
count:int [read-only]現在のループ処理回数を取得します。
Implementation public function get count():int
See also
| repeatCount | property |
repeatCount:int [read-write]実行したいループ処理数を取得または設定します。 この値が 0 に設定されている場合には、stop() メソッドで終了させるまで処理し続けます。 コマンド実行中に値を変更しても、処理に対して反映されません。
Implementation public function get repeatCount():int
public function set repeatCount(value:int):void
See also
| stop | () | method |