GrapeCity SPREAD for Windows Forms 11.0J
RowErrorTextChanged イベント (FpSpread)


行エラーテキストが変更されたときに発生します。
構文
'Declaration
 
Public Event RowErrorTextChanged As RowErrorTextEventHandler
'使用法
 
Dim instance As FpSpread
Dim handler As RowErrorTextEventHandler
 
AddHandler instance.RowErrorTextChanged, handler
public event RowErrorTextEventHandler RowErrorTextChanged
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、RowErrorTextChangedEventArgs 型の引数を受け取りました。次の RowErrorTextChangedEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ説明
RowIndex行インデックスを取得します。  
SheetViewSheetViewオブジェクトを取得します。  
次のサンプルコードは、RowErrorTextChangedイベントを使用します。
fpSpread1.ShowRowErrors = true;
fpSpread1.Sheets[0].Rows[1].ErrorText = "RowError";
fpSpread1.Sheets[0].Rows[1].Locked = true;

private void fpSpread1_RowErrorTextChanged(object sender, FarPoint.Win.Spread.RowErrorTextChangedEventArgs e)
        {
            listBox1.Items.Add(e.RowIndex);
        }
FpSpread1.ShowRowErrors = True
FpSpread1.Sheets(0).Rows(1).ErrorText = "RowError"
FpSpread1.Sheets(0).Rows(1).Locked = True

    Private Sub FpSpread1_RowErrorTextChanged(sender As Object, e As FarPoint.Win.Spread.RowErrorTextChangedEventArgs) Handles FpSpread1.RowErrorTextChanged
        ListBox1.Items.Add(e.RowIndex)
    End Sub
参照

FpSpread クラス
FpSpread メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.