C#,Delphi,Oracle,MSSQL 개발자블로그

[Farpoint Spread] 스프레드에 픽처박스의 이미지 넣기. 본문

Programming/Farpoint Spread(C#)

[Farpoint Spread] 스프레드에 픽처박스의 이미지 넣기.

19760323 2017. 6. 14. 20:10

 

fpSpread1 이라는 스프레드에 pictureBox1의 이미지를 넣는 소스.

 

 FarPoint.Win.Spread.CellType.ImageCellType imgcell = new FarPoint.Win.Spread.CellType.ImageCellType();
            System.Drawing.Image image = pictureBox1.Image;

            fpSpread1.ActiveSheet.Cells[1, 7].CellType = imgcell;

Comments