Mono.Terminal.CheckBox.CheckBox C# (CSharp) Метод

CheckBox() публичный Метод

Public constructor, creates a CheckButton based on the given text at the given position.
The size of CheckButton is computed based on the text length. This CheckButton is not toggled.
public CheckBox ( int x, int y, string s ) : System
x int
y int
s string
Результат System
        public CheckBox(int x, int y, string s)
            : this(x, y, s, false)
        {
        }

Same methods

CheckBox::CheckBox ( int x, int y, string s, bool is_checked ) : System