public LineFormatter(LineMargins margins = null, TabStops tabStops = null) { _margins = margins ?? new LineMargins(); _tabStops = tabStops ?? new TabStops(); }
public TabStops(TabStops d) { _list.AddRange(d); }