■ 시트에 커스텀 스킨을 적용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
// 커스텀 스킨을 생성한다. FarPoint.Win.Spread.SheetSkin customSheetSkin = new FarPoint.Win.Spread.SheetSkin ( "테스트스킨", Color.AliceBlue, Color.BlanchedAlmond, Color.Navy, Color.CornflowerBlue, FarPoint.Win.Spread.GridLines.Both, Color.Coral, Color.Navy, Color.Bisque, Color.Crimson, Color.AntiqueWhite, Color.BlanchedAlmond, true, true, true, true, true ); // 컴포넌트에서 첫번째 시트에 커스텀 스킨을 적용한다. customSheetSkin.Apply(fpSpread1.Sheets[0]); 또는 // 커스텀 스킨을 생성한다. FarPoint.Win.Spread.SheetSkin customSheetSkin = new FarPoint.Win.Spread.SheetSkin ( "테스트스킨", Color.AliceBlue, Color.BlanchedAlmond, Color.Navy, Color.CornflowerBlue, FarPoint.Win.Spread.GridLines.Both, Color.Coral, Color.Navy, Color.Bisque, Color.Crimson, Color.AntiqueWhite, Color.BlanchedAlmond, true, true, true, true, true ); // 새로운 SheetView 객체를 생성한다. FarPoint.Win.Spread.SheetView newSheetView = new FarPoint.Win.Spread.SheetView(); // SheetView 객체에 커스텀 스킨을 적용한다. customSheetSkin.Apply(newSheetView); // 컴포넌트에서 첫번째 시트에 SheetView 객체를 할당한다. fpSpread1.Sheets[0] = newSheetView; |