PowerTools MultiRow for Windows Forms 8.0J
IsValid プロパティ (ValidateActionContext)
使用例 

検証が成功したかどうかを示す値を取得します。
構文
Public ReadOnly Property IsValid As Boolean
public bool IsValid {get;}

プロパティ値

検証が成功した場合はtrue。それ以外の場合はfalse
使用例
次のサンプルコードは、CellValidatorをカスタマイズして独自のCellValidateActionを追加する方法を示します。このサンプルコードは、CellValidatorクラスに示されている詳細なコード例の一部を抜粋したものです。
class MyIconNotifyAction : IconNotify
{
    protected override void DoAction(ValidateActionContext context)
    {
        base.DoAction(context);
        //When the error icon pop up, one system sound will play at the same time.
        if (!context.IsValid)
        {
            System.Media.SystemSounds.Asterisk.Play();
        }
    }
}
Private Class MyIconNotifyAction
    Inherits IconNotify
    Protected Overloads Overrides Sub DoAction(ByVal context As ValidateActionContext)
        MyBase.DoAction(context)
        'When the error icon pop up, one system sound will play at the same time.
        If Not context.IsValid Then
            System.Media.SystemSounds.Asterisk.Play()
        End If
    End Sub
End Class
参照

ValidateActionContext クラス
ValidateActionContext メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.