OurSonic.UIManager.TextBox.ForceDrawing C# (CSharp) Method

ForceDrawing() public method

public ForceDrawing ( ) : ForceRedrawing
return ForceRedrawing
        public override ForceRedrawing ForceDrawing()
        {
            bool redraw = Focused;
            if (oldText != Text) {
                oldText = Text;
                redraw = true;
            }

            cachedForceRedrawing.Redraw = redraw;
            return cachedForceRedrawing;
        }