/**
  * Constructor used when importing a sheet from another
  * spreadsheet
  *
  * @param col the column number
  * @param cir the column info record read in
  */
 public ColumnInfoRecord(CSharpJExcel.Jxl.Read.Biff.ColumnInfoRecord cir,int col)
     : base(Type.COLINFO)
 {
     column = col;
     width = cir.getWidth();
     xfIndex = cir.getXFIndex();
     outlineLevel = cir.getOutlineLevel();
     collapsed = cir.getCollapsed();
 }