internal SLNumberReference()
        {
            WorksheetName    = string.Empty;
            StartRowIndex    = 1;
            StartColumnIndex = 1;
            EndRowIndex      = 1;
            EndColumnIndex   = 1;

            Formula        = string.Empty;
            NumberingCache = new SLNumberingCache();
        }
Пример #2
0
        internal SLNumberingCache Clone()
        {
            var nc = new SLNumberingCache();

            nc.FormatCode = FormatCode;
            nc.PointCount = PointCount;
            for (var i = 0; i < Points.Count; ++i)
            {
                nc.Points.Add(Points[i].Clone());
            }

            return(nc);
        }