Hi all
How can calculated columns can be read from dictionary? (c#)
Thanks
Andreas
read calculeted column from dictionary
-
- Posts: 63
- Joined: Fri Jul 17, 2009 5:00 am
- Location: St. Gallen, Switzerland
read calculeted column from dictionary
Hi Andreas,
These Calculated columns will have a StiCalcDataColumn type and they are stored along with other DataColumns in each DataSource.
So you can just check the type of each column and to find out which column is calculated and which is not.
report.Dictionary.DataSources["MyDataSource"].Columns["MyDataColumn"]
Thank you.
These Calculated columns will have a StiCalcDataColumn type and they are stored along with other DataColumns in each DataSource.
So you can just check the type of each column and to find out which column is calculated and which is not.
report.Dictionary.DataSources["MyDataSource"].Columns["MyDataColumn"]
Thank you.