ReportBuildOptions

Is it possible to specify both ReportBuildOptions.ALLOW_MISSING_MEMBERS and ReportBuildOptions.INLINE_ERROR_MESSAGES as options of ReportingEngine (linq) ?
The provided method accepts only a single value: engine.setOptions(int value).

Thanks

@simone.padovan

Yes, you can use both options with LINQ Reporting engine. Please check the following code snippet.

ReportingEngine engine = new ReportingEngine();
engine.setOptions(ReportBuildOptions.ALLOW_MISSING_MEMBERS | ReportBuildOptions.INLINE_ERROR_MESSAGES);
1 Like

This example also helped me. Thank you.

@johnkaltz

It is nice to hear from you that your problem has been resolved. Please feel free to ask if you have any question about Aspose.Words, we will be happy to help you.