/// <summary> /// Called whenever the Unicode string Is modified. When it Is modified /// we need to Create a new SST index, so that other LabelSSTRecords will not /// be affected by Changes tat we make to this string. /// </summary> /// <returns></returns> private UnicodeString CloneStringIfRequired() { if (_book == null) return _string; UnicodeString s = (UnicodeString)_string.Clone(); return s; }
/// <summary> /// Called whenever the Unicode string Is modified. When it Is modified /// we need to Create a new SST index, so that other LabelSSTRecords will not /// be affected by Changes tat we make to this string. /// </summary> /// <returns></returns> private UnicodeString CloneStringIfRequired() { if (_book == null) { return(_string); } UnicodeString s = (UnicodeString)_string.Clone(); return(s); }
/// <summary> /// Called whenever the Unicode string Is modified. When it Is modified /// we need to Create a new SST index, so that other LabelSSTRecords will not /// be affected by Changes tat we make to this string. /// </summary> /// <returns></returns> private UnicodeString CloneStringIfRequired() { if (book == null) { return(str); } UnicodeString s = (UnicodeString)str.Clone(); return(s); }