MESCIUS SPREAD for Windows Forms 15.0J
UserErrorEventArgs コンストラクタ(UserErrorCode,String)
使用例 

イベントのエラーコード
UserErrorCode列挙体を使用します。

追加のエラー情報

指定したコードと情報を使用して、UserErrorEventArgsオブジェクトを作成します。
構文
'宣言
 
Public Function New( _
   ByVal errorCode As UserErrorCode, _
   ByVal errorText As String _
)
public UserErrorEventArgs( 
   UserErrorCode errorCode,
   string errorText
)

パラメータ

errorCode
イベントのエラーコード
UserErrorCode列挙体を使用します。
errorText

追加のエラー情報

使用例
private void control_UserError(object sender, FarPoint.Win.Input.UserErrorEventArgs e)
{
Messagebox.Show(Convert.ToString(e.ErrorCode) + e.ErrorInfo);
}
Private Sub control_UserError(ByVal sender As Object, ByVal e As FarPoint.Win.Input.UserErrorEventArgs) Handles control.UserError
  Messagebox.Show(e.ErrorCode + e.ErrorInfo);
End Sub
参照

UserErrorEventArgs クラス
UserErrorEventArgs メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.