Page 1 of 1

Re: how hide table_cell and add image

Posted: Thu Jun 18, 2015 7:41 am
by Alex K.
Hello,

You nca use the following code:

Code: Select all

Stimulsoft.Report.Components.StiImage Image1 = new Stimulsoft.Report.Components.StiImage();
Image1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(1, 1, 4.8, 2.8);
Image1.Name = "Image1";
report.Pages[0].Components.Add(Image1);
Thank you.