From the property window in the designer, I am attempting to set the Binding expression for PageBreak based on the existing of a databound field.
I would expect that it is something like:
PageBreak = !string.IsNullOrEmptyOrWhitespace(Field.MyTextField) ? PageBreak.Before : PageBreak.None;
Can this be done without writing actual code behind on the report?
I would expect that it is something like:
PageBreak = !string.IsNullOrEmptyOrWhitespace(Field.MyTextField) ? PageBreak.Before : PageBreak.None;
Can this be done without writing actual code behind on the report?