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