Mono.Terminal.Label.Label C# (CSharp) Method

Label() public method

Public constructor: creates a label at the given coordinate with the given string.
public Label ( int x, int y, string s ) : System
x int
y int
s string
return System
        public Label(int x, int y, string s)
            : base(x, y, s.Length, 1)
        {
            text = s;
        }