Esempio n. 1
0
 public Field(string fieldName, string headerName, int width, HtmlAlign textAlignment, Color bgColor, Color headerBgColor)
     : this(fieldName, headerName, width, textAlignment)
 {
     BackColor       = bgColor;
     HeaderBackColor = headerBgColor;
 }
Esempio n. 2
0
 public Field(string fieldName, string headerName, int width, HtmlAlign textAlignment)
     : this(fieldName, headerName, width)
 {
     this.m_align = textAlignment;
 }