Ejemplo n.º 1
0
 ///<summary>Creates a new ODGridRow.</summary>
 public ODGridRow()
 {
     cells        = new ODGridCellList();
     colorBackG   = Color.White;
     bold         = false;
     colorText    = Color.Black;
     colorLborder = Color.Empty;
     tag          = null;
     note         = "";
     //height=0;
 }
Ejemplo n.º 2
0
 public ODGridRow(params ODGridCell[] cellList)
 {
     cells = new ODGridCellList();
     cellList.ToList().ForEach(x => cells.Add(x));
     colorBackG   = Color.White;
     bold         = false;
     colorText    = Color.Black;
     colorLborder = Color.Empty;
     tag          = null;
     note         = "";
     //height=0;
 }