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

SetText() public method

public SetText ( string lcd, string vfdUpper, string vfdLower, int delay ) : void
lcd string
vfdUpper string
vfdLower string
delay int
return void
        public void SetText(string lcd, string vfdUpper, string vfdLower, int delay)
        {
            lock (this.queueLock)
            {
                Logging.Log("Display Handler", "Setting text to \"" + lcd + "\"");

                this.queue.Clear();
                this.queue.Add(new Text(lcd, vfdUpper, vfdLower, delay));
                this.position = 0;

                this.update();
            }
        }

Same methods

DisplayHandler::SetText ( string text ) : void
DisplayHandler::SetText ( string text, int delay ) : void
DisplayHandler::SetText ( string lcd, string vfdUpper, string vfdLower ) : void