how hide table_cell and add image

Stimulsoft Reports.NET discussion
Post Reply
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: how hide table_cell and add image

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