Animatroller.Framework.Controller.CueList.CueInstance.StopAllExistingTasks C# (CSharp) Method

StopAllExistingTasks() public method

public StopAllExistingTasks ( ) : void
return void
            public void StopAllExistingTasks()
            {
                foreach (var task in this.tasks.Values)
                {
                    Executor.Current.StopManagedTask(task);
                }
            }