示例#1
0
 public DataValue(string name, string text, int width, ValueColorCollection data)
 {
     this.name  = name;
     this.data  = data;
     this.width = width;
     this.text  = text;
 }
示例#2
0
        public void Add(string ColumnName, string Text, int width)
        {
            var listValue = new ValueColorCollection(Calendar);

            row.Add(new DataValue(ColumnName, Text, width, listValue));
        }