Esempio n. 1
0
 public Label(int top, int left, int right)
 {
     _top        = top;
     _left       = left;
     _width      = right - left;
     _whitespace = Whitespace.GetSpaces(_width);
 }
Esempio n. 2
0
 public View(int top, int left, int bottom, int right)
 {
     Top       = top;
     Left      = left;
     Bottom    = bottom;
     Right     = right;
     _blankRow = Whitespace.GetSpaces(Width);
     Initialize();
 }
Esempio n. 3
0
 public View(ViewLineRenderer renderer, int top, int left, int bottom, int right)
 {
     _renderer = renderer;
     Top       = top;
     Left      = left;
     Bottom    = bottom;
     Right     = right;
     _blankRow = Whitespace.GetSpaces(Width);
     Initialize();
 }