Esempio n. 1
0
 public XlsSSTReader(XlsBiffSST sst, XlsBiffStream biffStream)
 {
     Sst                 = sst;
     BiffStream          = biffStream;
     CurrentRecord       = Sst;
     CurrentRecordOffset = 4 + 8; // +4 skips BIFF header, +8 skips SST header
 }
Esempio n. 2
0
 /// <summary>
 /// Returns text using specified SST
 /// </summary>
 /// <param name="sst">Shared String Table record</param>
 /// <returns></returns>
 public string Text(XlsBiffSST sst)
 {
     return(sst.GetString(SSTIndex));
 }