PowerTools SPREAD for Windows Forms 8.0J
SetCellErrorText メソッド (SheetView)


セルの行インデックス
セルの列インデックス
エラーテキスト。
指定したセルのエラーテキストを設定します。
構文
'Declaration
 
Public Sub SetCellErrorText( _
   ByVal rowIndex As Integer, _
   ByVal columnIndex As Integer, _
   ByVal errorText As String _
) 
'使用法
 
Dim instance As SheetView
Dim rowIndex As Integer
Dim columnIndex As Integer
Dim errorText As String
 
instance.SetCellErrorText(rowIndex, columnIndex, errorText)
public void SetCellErrorText( 
   int rowIndex,
   int columnIndex,
   string errorText
)

パラメータ

rowIndex
セルの行インデックス
columnIndex
セルの列インデックス
errorText
エラーテキスト。
次のサンプルコードは、SetCellErrorTextメソッドを使用します。
fpSpread1.ShowCellErrors = true;
fpSpread1.Sheets[0].Cells[1, 1].Locked = true;
fpSpread1.Sheets[0].SetCellErrorText(1, 1, "ErrorText");
FpSpread1.ShowCellErrors = True
FpSpread1.Sheets(0).Cells(1, 1).Locked = True
FpSpread1.Sheets(0).SetCellErrorText(1, 1, "ErrorText")
参照

SheetView クラス
SheetView メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.