internal SLNumberReference() { this.WorksheetName = string.Empty; this.StartRowIndex = 1; this.StartColumnIndex = 1; this.EndRowIndex = 1; this.EndColumnIndex = 1; this.Formula = string.Empty; this.NumberingCache = new SLNumberingCache(); }
internal SLNumberingCache Clone() { SLNumberingCache nc = new SLNumberingCache(); nc.FormatCode = this.FormatCode; nc.PointCount = this.PointCount; for (int i = 0; i < this.Points.Count; ++i) { nc.Points.Add(this.Points[i].Clone()); } return(nc); }