Blink.GUI.TextButton.SetText C# (CSharp) Method

SetText() public method

public SetText ( String text ) : void
text String
return void
        public void SetText(String text)
        {
            this.text = text;
            this.size = new Vector2(FONT_SIZE * text.Length + 2*MARGIN, this.size.Y);
        }