Beyond_Beyaan.BBTextBox.Draw C# (CSharp) Méthode

Draw() public méthode

public Draw ( ) : void
Résultat void
        public void Draw()
        {
            lock (_lockObject)
            {
                if (_allowScrollbar && _scrollbarVisible)
                {
                    _textScrollBar.Draw();
                }
                //Already rendered when text was set
                _target.Blit(_x, _y);
            }
        }