Spread for ASP.NET 8.0 Product Documentation > Developer's Guide > Customizing with Cell Types > Working with Editable Cell Types > Setting an Integer Cell |
You can use integer cells to restrict users to entering numeric values as integers only and to display data as integers. The default error message is displayed if the user types a decimal value and tries to leave the cell.
The following image displays the default error message.
You can specify an edit mode format with the EditMode property and the IntegerCellType.EditModeSettings class.
For details on the properties and methods for this cell type, refer to the IntegerCellType class.
This example sets a cell to be an integer cell.
C# |
Copy Code
|
---|---|
FarPoint.Web.Spread.IntegerCellType intcell = new FarPoint.Web.Spread.IntegerCellType();
FpSpread1.ActiveSheetView.Cells[1, 1].CellType = intcell;
|
VB |
Copy Code
|
---|---|
Dim intcell As New FarPoint.Web.Spread.IntegerCellType() FpSpread1.ActiveSheetView.Cells(1, 1).CellType = intcell |