Ejemplo n.º 1
0
 /** 
  * Adds REF struct (ExternSheetSubRecord)
  * @param rec REF struct
  */
 public void AddREFRecord(RefSubRecord rec)
 {
     _list.Add(rec);
 }
Ejemplo n.º 2
0
        /**
         * Constructs a Extern Sheet record and Sets its fields appropriately.
         * @param in the RecordInputstream to Read the record from
         */

        public ExternSheetRecord(RecordInputStream in1)
        {
            _list = new ArrayList();

            int nItems = in1.ReadShort();

            for (int i = 0; i < nItems; ++i)
            {
                RefSubRecord rec = new RefSubRecord(in1);

                _list.Add(rec);
            }
        }