public DataValue(string name, string text, int width, ValueColorCollection data) { this.name = name; this.data = data; this.width = width; this.text = text; }
public void Add(string ColumnName, string Text, int width) { var listValue = new ValueColorCollection(Calendar); row.Add(new DataValue(ColumnName, Text, width, listValue)); }