AGS.Types.GUILabel.GUILabel C# (CSharp) Method

GUILabel() public method

public GUILabel ( int x, int y, int width, int height ) : System
x int
y int
width int
height int
return System
        public GUILabel(int x, int y, int width, int height)
            : base(x, y, width, height)
        {
            _text = "New Label";
            _textAlign = LabelTextAlignment.TopLeft;
        }

Same methods

GUILabel::GUILabel ( ) : System
GUILabel::GUILabel ( XmlNode node ) : System
GUILabel