FarPoint.Web.Spread 名前空間 > SheetView クラス : GetCellType メソッド |
注意: シートが数値データを含み、シートをExcelにエクスポートしようとしている場合、最適な結果を得るため任意の数値データをSpreadの通貨型、数値型(整数型)、またはパーセント型セルに設定します。
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
sv.Cells[0, 0].CellType = new FarPoint.Web.Spread.ButtonCellType();
ListBox1.Items.Add(Convert.ToString(sv.GetCellType(0, 0)));
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView sv.Cells(0, 0).CellType = New FarPoint.Web.Spread.ButtonCellType() ListBox1.Items.Add(Convert.ToString(sv.GetCellType(0, 0)))