FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > NumberCellType クラス : SetCalculatorText メソッド |
'Declaration Public Sub SetCalculatorText( _ ByVal okText As String, _ ByVal cancelText As String _ )
'使用法 Dim instance As NumberCellType Dim okText As String Dim cancelText As String instance.SetCalculatorText(okText, cancelText)
public void SetCalculatorText( string okText, string cancelText )
FarPoint.Win.Spread.CellType.NumberCellType ctest = new FarPoint.Win.Spread.CellType.NumberCellType(); ctest.SetCalculatorText("Accept", "Cancel"); fpSpread1.Sheets[0].Cells[0, 0].CellType = ctest;
Dim ctest As New FarPoint.Win.Spread.CellType.NumberCellType ctest.SetCalculatorText("Accept", "Cancel") FpSpread1.Sheets(0).Cells(0, 0).CellType = ctest