다음을 통해 공유


DataRowView.Delete 메서드

행을 삭제합니다.

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

구문

‘선언
Public Sub Delete
‘사용 방법
Dim instance As DataRowView

instance.Delete
public void Delete ()
public:
void Delete ()
public void Delete ()
public function Delete ()

설명

행이 속한 DataTable에 대해 AcceptChanges를 호출하기 전까지는 행이 영구히 삭제되지 않습니다.

예제

다음 예제에서는 행에 대해 Delete 메서드를 사용합니다.

Private Sub DeleteRow()
     Dim row As DataRowView
     Dim view As DataView = CType(dataGrid1.DataSource, DataView)
     row = view(dataGrid1.CurrentCell.RowNumber)
     row.Delete()
End Sub
private void DeleteRow()
{
    DataRowView row;
    DataView view = (DataView) dataGrid1.DataSource;
    row = view[dataGrid1.CurrentCell.RowNumber];
    row.Delete();
}

플랫폼

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에서 지원

참고 항목

참조

DataRowView 클래스
DataRowView 멤버
System.Data 네임스페이스
BeginEdit