Page 1 of 1

read calculeted column from dictionary

Posted: Thu Aug 13, 2009 5:03 am
by Andreas Tastler
Hi all

How can calculated columns can be read from dictionary? (c#)

Thanks
Andreas

read calculeted column from dictionary

Posted: Thu Aug 13, 2009 9:37 pm
by Edward
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.