■ 커스텀 시트 데이터 모델을 만드는 방법을 보여준다.
▶ 예제 코드 (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 60 61 62 |
/// <summary> /// 커스텀 시트 데이터 모델 /// </summary> public class CustomSheetDataModel : FarPoint.Win.Spread.Model.BaseSheetDataModel { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 행 수 - RowCount /// <summary> /// 행 수 /// </summary> public override int RowCount { get { return 1000000; } } #endregion #region 컬럼 수 - ColumnCount /// <summary> /// 컬럼 수 /// </summary> public override int ColumnCount { get { return 10; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 값 구하기 - GetValue(rowIndex, columnIndex) /// <summary> /// 값 구하기 /// </summary> /// <param name="rowIndex">행 인덱스</param> /// <param name="columnIndex">컬럼 인덱스</param> /// <returns>값</returns> public override object GetValue(int rowIndex, int columnIndex) { return rowIndex + columnIndex; } #endregion } ... fpSpread1.ActiveSheet.Models.Data = new CustomSheetDataModel(); |