다음을 통해 공유


DataRow.HasVersion 메서드

지정된 버전이 있는지 여부를 나타내는 값을 가져옵니다.

네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)

구문

‘선언
Public Function HasVersion ( _
    version As DataRowVersion _
) As Boolean
‘사용 방법
Dim instance As DataRow
Dim version As DataRowVersion
Dim returnValue As Boolean

returnValue = instance.HasVersion(version)
public bool HasVersion (
    DataRowVersion version
)
public:
bool HasVersion (
    DataRowVersion version
)
public boolean HasVersion (
    DataRowVersion version
)
public function HasVersion (
    version : DataRowVersion
) : boolean

매개 변수

  • version
    행 버전을 지정하는 DataRowVersion 값 중 하나입니다.

반환 값

버전이 있으면 true이고, 그렇지 않으면 false입니다.

설명

자세한 내용은 BeginEdit 메서드를 참조하십시오.

예제

다음 예제에서는 HasVersion 메서드를 사용하여 열의 현재 값과 제안된 값이 같은지 여부를 확인합니다. 값이 같으면 편집이 취소되고, 그렇지 않으면 AcceptChanges 메서드가 호출되어 편집을 끝냅니다.

Private Sub CheckVersionBeforeAccept()
    ' Assuming the DataGrid is bound to a DataTable.
    Dim table As DataTable = CType(DataGrid1.DataSource, DataTable)
    Dim row As DataRow = table.Rows(DataGrid1.CurrentCell.RowNumber)
    row.BeginEdit
    row(1) = Edit1.Text
    If row.HasVersion(datarowversion.Proposed) Then
       If row(1, DataRowVersion.Current) Is _
            row(1, DataRowversion.Proposed) Then
          Console.WriteLine("The original and the proposed are the same")
          row.CancelEdit
          Exit Sub
       Else
          row.AcceptChanges
       End If
    Else
       Console.WriteLine("No new values proposed")
    End If
End Sub

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

DataRow 클래스
DataRow 멤버
System.Data 네임스페이스
AcceptChanges
BeginEdit
CancelEdit
Item
GetChildRows
GetParentRows
EndEdit
RowState