How to access the properties and parts of an SSRS report at runtime

newmaza

New Member
I'm using the ReportViewer control to display a server report in an ASP.NET page and I'm looking for a way to get the report into an object that I can then read and/or modify.This kind of thing:\[code\]var rw = report.Width;var t = ((Chart)report.Body.Item[3]).Title;\[/code\]Is there a way, or am I stuck with parsing the XML file?
 
Back
Top