// Add line with text public void Line(string text) { TextObject t = new TextObject(); t.text = text; t.obj = ""; textList.Add(t); }
// Add line with value public void Line(string text, string show) { TextObject t = new TextObject(); t.text = text + ":"; t.obj = show; textList.Add(t); }
/// <summary> /// Add empty line /// </summary> public void Line() { TextObject t = new TextObject(); t.text = ""; t.obj = ""; textList.Add(t); }