public void Clear()
        {
            m_FilePath = String.Empty;

            Header = new HeaderTemplate();
            Title  = new TitleTemplate();
            Task   = new TaskTemplate();
            Footer = new FooterTemplate();
#if DEBUG
            Header.Text      = "Header";
            Header.BackColor = Color.LightBlue;
            Title.Text       = "Title";
            Task.Text        = "$(title)<br>";
            Footer.Text      = "Footer";
            Footer.BackColor = Color.LightPink;
            m_FilePath       = "Example.rbt";
#endif
        }
        public void Clear()
        {
            m_FilePath = String.Empty;

            BackImage = String.Empty;
            BackColor = Color.Transparent;

            Header = new HeaderTemplate();
            Title  = new TitleTemplate();
            Task   = new TaskTemplate();
            Footer = new FooterTemplate();
#if DEBUG
            //Header.Text = "Header";
            //Header.BackColor = Color.LightBlue;
            //Title.Text = "Title";
            //Task.Text = "$(title)<br>";
            //Footer.Text = "Footer";
            //Footer.BackColor = Color.LightPink;
            //m_FilePath = "Example.rbt";
#endif
        }
Beispiel #3
0
 public FooterTemplateReporter(FooterTemplate footer, Color defbackColor) : base(footer, defbackColor)
 {
     Copy(footer);
 }
Beispiel #4
0
 public FooterTemplate(FooterTemplate footer) : this()
 {
     Copy(footer);
 }
Beispiel #5
0
 public FooterTemplateReporter(FooterTemplate footer)
 {
     Copy(footer);
 }