DataView.Delete 메서드
지정된 인덱스의 행을 삭제합니다.
네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)
구문
‘선언
Public Sub Delete ( _
index As Integer _
)
‘사용 방법
Dim instance As DataView
Dim index As Integer
instance.Delete(index)
public void Delete (
int index
)
public:
void Delete (
int index
)
public void Delete (
int index
)
public function Delete (
index : int
)
매개 변수
- index
삭제할 행의 인덱스입니다.
설명
DataRow를 삭제하면 행의 상태가 DataViewRowState.Deleted로 바뀝니다. DataTable에서 RejectChanges를 호출하여 삭제를 롤백할 수 있습니다.
예제
다음 예제에서는 Delete 메서드를 사용하여 행을 삭제합니다.
Private Sub DeleteRow(view As DataView, val As String)
' Find the given value in the DataView and delete the row.
Dim i As Integer = view.Find(val)
If i = -1 Then
' The value wasn'table found
Console.WriteLine("Value not found in primary key column")
Exit Sub
Else
view.Delete(i)
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에서 지원
참고 항목
참조
DataView 클래스
DataView 멤버
System.Data 네임스페이스
DataViewRowState
Find