C#,Delphi,Oracle,MSSQL 개발자블로그
[Farpoint Spread] 스프레드에 픽처박스의 이미지 넣기. 본문
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;
'Programming > Farpoint Spread(C#)' 카테고리의 다른 글
[Farpoint Spread]소수점 표시 해제 (0) | 2017.08.10 |
---|---|
[Farpoint Spread] Removing Row or Column (0) | 2017.08.10 |
[Farpoint Spread] 셀 안의 데이터 길이만큼 스프레드의 너비 조절. (0) | 2017.06.14 |
[Farpoint Spread] 코드로 스프레드 디자이너 속성 사용하기 팁. (0) | 2017.06.08 |
[Farpoint Spread] SPREAD에서 CHECKBOX 선택이 되지 않는 문제. (0) | 2017.04.14 |
Comments