iMon.XBMC.DisplayHandler.SetProgress C# (CSharp) Метод

SetProgress() публичный Метод

public SetProgress ( System.TimeSpan position, System.TimeSpan total ) : void
position System.TimeSpan
total System.TimeSpan
Результат void
        public void SetProgress(TimeSpan position, TimeSpan total)
        {
            if (this.lcd)
            {
                this.imon.LCD.SetProgress(Convert.ToInt32(position.TotalMilliseconds), Convert.ToInt32(total.TotalMilliseconds));
            }
        }

Same methods

DisplayHandler::SetProgress ( int position, int total ) : void