UpdateFramesFromTimes() private method

private UpdateFramesFromTimes ( ) : void
return void
示例#1
0
        /* Public methods */

        /// <summary>Shifts the subtitle with a specified time span.</summary>
        /// <param name="time">The time span to shift the subtitle with, which can be positive or negative.</param>
        public void Shift(TimeSpan time)
        {
            PreciseStart += time;
            PreciseEnd   += time;
            subtitle.UpdateFramesFromTimes();
        }