■ 셀 배경 이미지를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
// 텍스트 셀 인스턴스를 생성한다. FarPoint.Win.Spread.CellType.TextCellType textCellType = new FarPoint.Win.Spread.CellType.TextCellType(); // 이미지 파일을 로드하고 BackgroundImage 속성에 설정한다. FarPoint.Win.Picture picture = new FarPoint.Win.Picture ( Image.FromFile("c:\\sample.jpg"), FarPoint.Win.RenderStyle.Stretch ); textCellType.BackgroundImage = picture; // 텍스트 셀을 적용한다. fpSpread1.ActiveSheet.Cells[1, 1].CellType = textCellType; // 이미지가 표시되도록 셀 크기를 설정한다. fpSpread1.ActiveSheet.Rows[1].Height = picture.Image.Height; fpSpread1.ActiveSheet.Columns[1].Width = picture.Image.Width; |