Hi, I have a report act as a header template as follows:
var template = new TemplateReport{ Header = "Some header"};
where updating the custom properties will also update the textbox value.
When I want to use the template, I will just create the template, and do the such things:
var template = new TemplateReport{ Header = "Some header"};
var content = new ContentReport();
template.Content = content;
How can I do such things with report book? Thanks!