■ 행/컬럼 수를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
fpSpread1.Sheets[0].ColumnCount = 10; fpSpread1.Sheets[0].RowCount = 100; 또는 FarPoint.Win.Spread.SheetView sheetView; sheetView = fpSpread1.Sheets[0]; sheetView.ColumnCount = 10; sheetView.RowCount = 100; |