GrapeCity InputMan for Windows Forms 10.0J
下線による通知

LineNotify オブジェクトはコントロールに入力された値が不正なときに、文字列に下線(波線)を表示してエラーを通知します。

プロパティ

LineNotify オブジェクトは、次のプロパティを使用して下線による通知方法を設定します。

サンプルコード

次のサンプルコードは、汎用検証コンポーネントの検証アクションに下線による通知を設定する例です。

Imports GrapeCity.Win.Editors

' アクション(下線通知)を作成します。 
Dim LineNotify1 As New LineNotify()
' 下線の色を設定します。
LineNotify1.LineColor = Color.Red

' TextBox1に作成した検証アクションを設定します。
GcCommonValidator1.GetValidateActions(TextBox1).AddRange(New ValidateAction() {LineNotify1})
using GrapeCity.Win.Editors;

// アクション(下線通知)を作成します。 
LineNotify lineNotify1 = new LineNotify();
// 下線の色を設定します。
lineNotify1.LineColor = Color.Red;

// textBox1に作成した検証アクションを設定します。
gcCommonValidator1.GetValidateActions(textBox1).AddRange(new ValidateAction[] {lineNotify1});
参照

 

 


© 2004 GrapeCity inc. All rights reserved.