public Label(int top, int left, int right) { _top = top; _left = left; _width = right - left; _whitespace = Whitespace.GetSpaces(_width); }
public View(int top, int left, int bottom, int right) { Top = top; Left = left; Bottom = bottom; Right = right; _blankRow = Whitespace.GetSpaces(Width); Initialize(); }
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(); }