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

Button() public method

Public constructor, creates a button based on the given text at the given position.
The size of the button is computed based on the text length. This button is not a default button.
public Button ( int x, int y, string s ) : System
x int
y int
s string
return System
        public Button(int x, int y, string s)
            : this(x, y, s, false)
        {
        }

Same methods

Button::Button ( int x, int y, string s, bool is_default ) : System
Button::Button ( string s ) : System
Button::Button ( string s, bool is_default ) : System