DataRow.RowError 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
행에 대한 사용자 지정 오류 설명을 가져오거나 설정합니다.
public:
property System::String ^ RowError { System::String ^ get(); void set(System::String ^ value); };
public string RowError { get; set; }
member this.RowError : string with get, set
Public Property RowError As String
속성 값
오류를 설명하는 텍스트입니다.
예제
다음 예제에서는 컨트롤에 표시된 테이블의 10개 행에 DataGrid 대한 오류 텍스트를 설정합니다.
private void SetRowErrors(DataTable table)
{
// Set error text for ten rows.
for(int i = 0; i < 10; i++)
{
// Insert column 1 value into each error.
table.Rows[i].RowError = "ERROR: "
+ table.Rows[i][1];
}
// Get the DataSet for the table, and test it for errors.
DataSet dataSet = table.DataSet;
TestForErrors(dataSet);
}
private void TestForErrors(DataSet dataSet)
{
// Test for errors. If DataSet has errors, test each table.
if(dataSet.HasErrors)
{
foreach(DataTable tempDataTable in dataSet.Tables)
{
// If the table has errors, then print them.
if(tempDataTable.HasErrors)
PrintRowErrs(tempDataTable);
}
// Refresh the DataGrid to see the error-marked rows.
dataGrid1.Refresh();
}
}
private void PrintRowErrs(DataTable table)
{
foreach(DataRow row in table.Rows)
{
if(row.HasErrors)
{
Console.WriteLine(row.RowError);
}
}
}
Private Sub SetRowErrors(ByVal table As DataTable)
' Set error text for ten rows.
Dim i As Integer
For i = 0 to 10
' Insert column 1 value into each error.
table.Rows(i).RowError = "ERROR: " & _
table.Rows(i)(1).ToString()
Next
' Get the DataSet for the table, and test it for errors.
Dim dataSet As DataSet = table.DataSet
TestForErrors(dataSet)
End Sub
Private Sub TestForErrors(ByVal dataSet As DataSet)
' Test for errors. If DataSet has errors,
' test each table.
If dataSet.HasErrors
Dim tempDataTable As DataTable
For Each tempDataTable in dataSet.Tables
' If the table has errors, then print them.
If(tempDataTable.HasErrors) Then
PrintRowErrs(tempDataTable)
End If
Next
' Refresh the DataGrid to see the error-marked rows.
DataGrid1.Refresh()
End If
End Sub
Private Sub PrintRowErrs(ByVal table As DataTable)
Dim row As DataRow
For Each row in table.Rows
If(row.HasErrors) Then
Console.WriteLine(row.RowError)
End If
Next
End Sub
설명
HasErrors 속성을 사용하여 먼저 에 DataRow 오류가 포함되어 있는지 여부를 확인합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET