VixenModules.Editor.TimedSequenceEditor.MarkManager.sequencePlay C# (CSharp) Method

sequencePlay() private method

private sequencePlay ( System.TimeSpan StartTime ) : void
StartTime System.TimeSpan
return void
        private void sequencePlay(TimeSpan StartTime)
        {
            if (radioButtonTapper.Checked)
            {
                _newTappedMarks.Clear();
            }
            updatePositionControls(StartTime);
            _currentPlayPosition = StartTime;
            _timedSequenceEditorForm.PlaySequenceFrom(StartTime);
            timerPlayback.Start();
        }