Hello,
Removed a property in my class that I'm registering in the report, but this property remains displayed business object dictionary, tried running the command:
report.Dictionary.BusinessObjects.Clear ();
report.Dictionary.RemoveUnusedData ();
The first command removed my relationship with the band data, the second did not see any difference.
What should I do to display the deleted columns of my object?
Thank you in advance,
Tânia
Remove column from the business object dictionary
Re: Remove column from the business object dictionary
Hello.
Please try to use next code:
Thank you.
Please try to use next code:
Code: Select all
StiOptions.Dictionary.BusinessObjects.ColumnsSynchronizationMode = Stimulsoft.Report.Dictionary.StiColumnsSynchronizationMode.RemoveAbsentColumns;
report.Dictionary.SynchronizeBusinessObjects();
Re: Remove column from the business object dictionary
Thank you, it worked
Tânia
Tânia
Re: Remove column from the business object dictionary
Dear Tânia,
Thank you for letting us know about this.
Thank you for letting us know about this.