internal SLMultiLevelStringCache Clone()
        {
            SLMultiLevelStringCache mlsc = new SLMultiLevelStringCache();
            mlsc.PointCount = this.PointCount;
            for (int i = 0; i < this.Levels.Count; ++i)
            {
                mlsc.Levels.Add(this.Levels[i].Clone());
            }

            return mlsc;
        }
Пример #2
0
        internal SLMultiLevelStringCache Clone()
        {
            SLMultiLevelStringCache mlsc = new SLMultiLevelStringCache();

            mlsc.PointCount = this.PointCount;
            for (int i = 0; i < this.Levels.Count; ++i)
            {
                mlsc.Levels.Add(this.Levels[i].Clone());
            }

            return(mlsc);
        }
 internal SLMultiLevelStringReference()
 {
     this.Formula = string.Empty;
     this.MultiLevelStringCache = new SLMultiLevelStringCache();
 }
Пример #4
0
 internal SLMultiLevelStringReference()
 {
     this.Formula = string.Empty;
     this.MultiLevelStringCache = new SLMultiLevelStringCache();
 }