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

SetProgress() public method

public SetProgress ( int position, int total ) : void
position int
total int
return void
        public void SetProgress(int position, int total)
        {
            if (this.lcd)
            {
                this.imon.LCD.SetProgress(position, total);
            }
        }

Same methods

DisplayHandler::SetProgress ( System.TimeSpan position, System.TimeSpan total ) : void