Пример #1
0
 public LinkCell(LinkCell cell) : base(cell)
 {
     this.m_acolor     = Color.Yellow;
     this.m_vcolor     = Color.Gray;
     this.m_linkFormat = "{0}";
     base.TextFont     = new Font("Tahoma", 8f, FontStyle.Underline);
     base.ForeColor    = Color.Blue;
     this.m_acolor     = cell.m_acolor;
     this.m_vcolor     = cell.m_vcolor;
     this.m_linkFormat = cell.m_linkFormat;
 }
Пример #2
0
 public LinkCell(LinkCell cell)
     : base(cell)
 {
     this.m_acolor = Color.Yellow;
     this.m_vcolor = Color.Gray;
     this.m_linkFormat = "{0}";
     base.TextFont = new Font("Tahoma", 8f, FontStyle.Underline);
     base.ForeColor = Color.Blue;
     this.m_acolor = cell.m_acolor;
     this.m_vcolor = cell.m_vcolor;
     this.m_linkFormat = cell.m_linkFormat;
 }