DataRow.GetColumnError メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
列のエラーの説明を取得します。
オーバーロード
GetColumnError(String) |
名前で指定した列のエラーの説明を取得します。 |
GetColumnError(DataColumn) |
指定した DataColumn のエラーの説明を取得します。 |
GetColumnError(Int32) |
インデックスで指定した列のエラーの説明を取得します。 |
GetColumnError(String)
- ソース:
- DataRow.cs
- ソース:
- DataRow.cs
- ソース:
- DataRow.cs
名前で指定した列のエラーの説明を取得します。
public:
System::String ^ GetColumnError(System::String ^ columnName);
public string GetColumnError (string columnName);
member this.GetColumnError : string -> string
Public Function GetColumnError (columnName As String) As String
パラメーター
- columnName
- String
列の名前。
戻り値
エラーの説明のテキスト。
例
次の例では、指定した のエラーの説明を設定します DataRow。
private void SetColError(DataRow row, int columnIndex)
{
string errorString = "Replace this text.";
// Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString);
}
private void PrintColError(DataRow row, int columnIndex)
{
// Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
byVal columnIndex As Integer)
Dim errorString As String = "Replace this text."
' Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString)
End Sub
Private Sub PrintColError( _
ByVal row As DataRow, byVal columnIndex As Integer)
' Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex))
End Sub
注釈
列エラーを SetColumnError 設定するには、 メソッドを使用します。
列コレクションにエラーが存在するかどうかを確認するには、 メソッドを使用します HasErrors 。 したがって、 メソッドを GetColumnsInError 使用して、エラーを含むすべての列を取得できます。
列コレクションのすべてのエラーをクリアするには、 メソッドを使用します ClearErrors 。
こちらもご覧ください
- ClearErrors()
- DataColumnCollection
- Contains(String)
- DataColumn
- GetColumnsInError()
- HasErrors
- RowError
- SetColumnError(Int32, String)
適用対象
GetColumnError(DataColumn)
- ソース:
- DataRow.cs
- ソース:
- DataRow.cs
- ソース:
- DataRow.cs
指定した DataColumn のエラーの説明を取得します。
public:
System::String ^ GetColumnError(System::Data::DataColumn ^ column);
public string GetColumnError (System.Data.DataColumn column);
member this.GetColumnError : System.Data.DataColumn -> string
Public Function GetColumnError (column As DataColumn) As String
パラメーター
- column
- DataColumn
戻り値
エラーの説明のテキスト。
例
次の例では、指定した のエラーの説明を設定します DataRow。
private void SetColError(DataRow row, int columnIndex)
{
string errorString = "Replace this text.";
// Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString);
}
private void PrintColError(DataRow row, int columnIndex)
{
// Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
byVal columnIndex As Integer)
Dim errorString As String = "Replace this text."
' Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString)
End Sub
Private Sub PrintColError( _
ByVal row As DataRow, byVal columnIndex As Integer)
' Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex))
End Sub
注釈
列エラーを SetColumnError 設定するには、 メソッドを使用します。
列コレクションにエラーが存在するかどうかを確認するには、 メソッドを使用します HasErrors 。 したがって、 メソッドを GetColumnsInError 使用して、エラーを含むすべての列を取得できます。 または、 の DataTable メソッドはGetErrors、エラーのあるすべての行を返します。
列コレクションのすべてのエラーをクリアするには、 メソッドを使用します ClearErrors 。
こちらもご覧ください
- ClearErrors()
- DataColumnCollection
- Contains(String)
- DataColumn
- GetColumnsInError()
- GetErrors()
- HasErrors
- RowError
- SetColumnError(Int32, String)
適用対象
GetColumnError(Int32)
- ソース:
- DataRow.cs
- ソース:
- DataRow.cs
- ソース:
- DataRow.cs
インデックスで指定した列のエラーの説明を取得します。
public:
System::String ^ GetColumnError(int columnIndex);
public string GetColumnError (int columnIndex);
member this.GetColumnError : int -> string
Public Function GetColumnError (columnIndex As Integer) As String
パラメーター
- columnIndex
- Int32
列の 0 から始まるインデックス番号。
戻り値
エラーの説明のテキスト。
例外
引数 columnIndex
が範囲外です。
例
次の例では、指定した のエラーの説明を設定します DataRow。
private void SetColError(DataRow row, int columnIndex)
{
string errorString = "Replace this text.";
// Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString);
}
private void PrintColError(DataRow row, int columnIndex)
{
// Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
byVal columnIndex As Integer)
Dim errorString As String = "Replace this text."
' Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString)
End Sub
Private Sub PrintColError( _
ByVal row As DataRow, byVal columnIndex As Integer)
' Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex))
End Sub
注釈
列エラーを SetColumnError 設定するには、 メソッドを使用します。
列コレクションにエラーが存在するかどうかを確認するには、 メソッドを使用します HasErrors 。 したがって、 メソッドを GetColumnsInError 使用して、エラーを含むすべての列を取得できます。
列コレクションのすべてのエラーをクリアするには、 メソッドを使用します ClearErrors 。
こちらもご覧ください
- ClearErrors()
- DataColumnCollection
- Contains(String)
- DataColumn
- GetColumnsInError()
- HasErrors
- RowError
- SetColumnError(Int32, String)
適用対象
.NET