Esempio n. 1
0
 /**
  * Constructor used when copying a label from a read only
  * spreadsheet
  *
  * @param lc the label to copy
  */
 protected LabelRecord(LabelCell lc)
     : base(Type.LABELSST, lc)
 {
     contents = lc.getString();
     if (contents == null)
     {
         contents = string.Empty;
     }
 }
 /**
  * Constructor used when copying a label from a read only
  * spreadsheet
  *
  * @param lc the label to copy
  */
 protected LabelRecord(LabelCell lc)
     : base(Type.LABELSST, lc)
 {
     contents = lc.getString();
     if (contents == null)
         {
         contents = string.Empty;
         }
 }