Ejemplo n.º 1
0
 public DLS() : base("DLS ")
 {
     // Non optionnal
     colh  = AddChunk(new CKcolh()) as CKcolh;
     linsl = AddChunk(new Linsl()) as Linsl;
     ptbl  = AddChunk(new CKptbl()) as CKptbl;
     wvpl  = AddChunk(new Lwvpl()) as Lwvpl;
     INFO  = AddChunk(new LCInfo()) as LCInfo;
 }
Ejemplo n.º 2
0
 public void SetName(string inam)
 {
     name = inam;
     if (_info == null)
     {
         _info = AddChunk(new LCInfo()) as LCInfo;
     }
     _info.SetName(name);
 }