I am creating bulk reports by generating reports programatically and then directly saving them to files on disk without opening.
I would like to skip saving reports which have no data in them but I need a way to check if the report is empty.
What property in the Telerik.Reporting.Report object should I check in order to do this?
The .Items property seems to include column headings so its of no use to me. I found the .Bindings collection and thought about .Bindings.Any() but I cannot find any documentation on it so I am not sure if that is an adequate solution.
I would like to skip saving reports which have no data in them but I need a way to check if the report is empty.
What property in the Telerik.Reporting.Report object should I check in order to do this?
The .Items property seems to include column headings so its of no use to me. I found the .Bindings collection and thought about .Bindings.Any() but I cannot find any documentation on it so I am not sure if that is an adequate solution.