public LegendCellColumn(string headerText, LegendCellColumnType columnType, string text, ContentAlignment alignment)
 {
     this.headerText = headerText;
     this.columnType = columnType;
     this.text       = text;
     this.alignment  = alignment;
 }
 private void Intitialize(string headerText, LegendCellColumnType columnType, string text, ContentAlignment alignment)
 {
     this.headerText = headerText;
     this.ColumnType = columnType;
     this.Text       = text;
     this.Alignment  = alignment;
 }
Exemplo n.º 3
0
 public void Insert(int index, string headerText, LegendCellColumnType columnType, string text, ContentAlignment alignment)
 {
     base.List.Insert(index, new LegendCellColumn(headerText, columnType, text, alignment));
 }
Exemplo n.º 4
0
 public int Add(string headerText, LegendCellColumnType columnType, string text, ContentAlignment alignment)
 {
     return(base.List.Add(new LegendCellColumn(headerText, columnType, text, alignment)));
 }
 public LegendCellColumn(string headerText, LegendCellColumnType columnType, string text)
     : this(headerText, columnType, text, ContentAlignment.MiddleCenter)
 {
 }