FarPoint.Web.Spread 名前空間 > IntegerCellType クラス > IntegerCellType コンストラクタ : IntegerCellType コンストラクタ(String) |
'Declaration
Public Function New( _ ByVal errorMessage As String _ )
public IntegerCellType( string errorMessage )
FarPoint.Web.Spread.IntegerCellType i = new FarPoint.Web.Spread.IntegerCellType("Value must be between 1 and 50"); i.MaximumValue = 50; i.MinimumValue = 1; FpSpread1.ActiveSheetView.Cells[0, 0].CellType = i;
Dim i As New FarPoint.Web.Spread.IntegerCellType("Value must be between 1 and 50") i.MaximumValue = 50 i.MinimumValue = 1 FpSpread1.ActiveSheetView.Cells(0, 0).CellType = i