I tried to hide a property of a business object in the dictionary, because this property has been marked obsolete. The report should work with this property but in the designer the property should not be visible/selectable. I tried
Code: Select all
_stiReport.Dictionary.Restrictions.Add(businessObject.Name + "." + propertyInfo.Name, StiDataType.DataColumn, StiRestrictionTypes.DenyShow)
_stiReport.Dictionary.Restrictions.Add(propertyInfo.Name, StiDataType.DataColumn, StiRestrictionTypes.DenyShow)
Thank you,
Markus