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

Entry() public method

Public constructor.
public Entry ( int x, int y, int w, string s ) : System
x int
y int
w int
s string
return System
        public Entry(int x, int y, int w, string s)
            : base(x, y, w, 1)
        {
            if (s == null)
                s = "";

            text = s;
            point = s.Length;
            first = point > w ? point - w : 0;
            CanFocus = true;
            Color = Application.ColorDialogFocus;
        }