iMon.XBMC.DisplayHandler.SetProgress C# (CSharp) Method

SetProgress() public method

public SetProgress ( System.TimeSpan position, System.TimeSpan total ) : void
position System.TimeSpan
total System.TimeSpan
return 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