Hi,
I am working web application oriented and i used telerik reporting tool. i want to add the image in my report page..
Any one help me.... with code......
1 Answer, 1 is accepted
0
Steve
Telerik team
answered on 24 Feb 2009, 05:00 PM
Hi Parthi,
Here is a sample code for creating a picturebox item and settings its value to a url resource:
Telerik.Reporting.PictureBox pictureBox1 = new Telerik.Reporting.PictureBox();
pictureBox1.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2, ((Telerik.Reporting.Drawing.UnitType)(Telerik.Reporting.Drawing.UnitType.Inch))), new Telerik.Reporting.Drawing.Unit(0.5, ((Telerik.Reporting.Drawing.UnitType)(Telerik.Reporting.Drawing.UnitType.Inch))));
pictureBox1.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1, ((Telerik.Reporting.Drawing.UnitType)(Telerik.Reporting.Drawing.UnitType.Inch))), new Telerik.Reporting.Drawing.Unit(1, ((Telerik.Reporting.Drawing.UnitType)(Telerik.Reporting.Drawing.UnitType.Inch))));