read calculeted column from dictionary

Stimulsoft Reports.NET discussion
Post Reply
Andreas Tastler
Posts: 63
Joined: Fri Jul 17, 2009 5:00 am
Location: St. Gallen, Switzerland

read calculeted column from dictionary

Post by Andreas Tastler »

Hi all

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

Thanks
Andreas
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

read calculeted column from dictionary

Post 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.
Post Reply