Пример #1
0
        internal SLDataTable Clone()
        {
            SLDataTable dt = new SLDataTable(this.ShapeProperties.listThemeColors, false, this.ShapeProperties.ThrowExceptionsIfAny);

            dt.ShapeProperties      = this.ShapeProperties.Clone();
            dt.ShowHorizontalBorder = this.ShowHorizontalBorder;
            dt.ShowVerticalBorder   = this.ShowVerticalBorder;
            dt.ShowOutlineBorder    = this.ShowOutlineBorder;
            dt.ShowLegendKeys       = this.ShowLegendKeys;
            if (this.Font != null)
            {
                dt.Font = this.Font.Clone();
            }

            return(dt);
        }
Пример #2
0
        internal SLDataTable Clone()
        {
            SLDataTable dt = new SLDataTable(this.ShapeProperties.listThemeColors);
            dt.ShapeProperties = this.ShapeProperties.Clone();
            dt.ShowHorizontalBorder = this.ShowHorizontalBorder;
            dt.ShowVerticalBorder = this.ShowVerticalBorder;
            dt.ShowOutlineBorder = this.ShowOutlineBorder;
            dt.ShowLegendKeys = this.ShowLegendKeys;
            if (this.Font != null) dt.Font = this.Font.Clone();

            return dt;
        }