Exemplo n.º 1
0
        public bool Copy(HeaderFooterTemplateItem other)
        {
            if (!base.Copy(other))
            {
                return(false);
            }

            WantDivider = other.WantDivider;
            PixelHeight = other.PixelHeight;
            BackColor   = DrawingColor.Copy(other.BackColor);

            return(true);
        }
Exemplo n.º 2
0
        public bool Copy(HtmlReportTemplate other)
        {
            if (other == null)
            {
                return(false);
            }

            BackImage = String.Copy(other.BackImage);
            BackColor = DrawingColor.Copy(other.BackColor);

            Header.Copy(other.Header);
            Title.Copy(other.Title);
            Task.Copy(other.Task);
            Footer.Copy(other.Footer);

            return(true);
        }