다음을 통해 공유


DataRowView.Row 속성

표시되는 DataRow를 가져옵니다.

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

구문

‘선언
Public ReadOnly Property Row As DataRow
‘사용 방법
Dim instance As DataRowView
Dim value As DataRow

value = instance.Row
public DataRow Row { get; }
public:
property DataRow^ Row {
    DataRow^ get ();
}
/** @property */
public DataRow get_Row ()
public function get Row () : DataRow

속성 값

DataRowView로 표시되는 DataRow입니다.

예제

다음 예제에서는 Row 속성을 사용하여 DataView의 수정된 각 행에 있는 셋째 열 값을 출력합니다.

Private Sub ShowColumn3()
    Dim view As DataView = CType(dataGrid1.DataSource, DataView)

    ' Set the filter to display only those rows that were modified.
    view.RowStateFilter = DataViewRowState.ModifiedCurrent

    ' Change the value of the CompanyName column for each modified row.
    Dim rowView As DataRowView
    For Each rowView In  view
        Console.WriteLine(rowView.Row(2))
    Next rowView
End Sub
private void ShowColumn3() 
{
    DataView view = (DataView) dataGrid1.DataSource;

    // Set the filter to display only those rows that were modified.
    view.RowStateFilter=DataViewRowState.ModifiedCurrent;

    // Change the value of the CompanyName column for each modified row.
    foreach(DataRowView rowView in view)
    {
        Console.WriteLine(rowView.Row[2]);
    }
}

플랫폼

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 네임스페이스
DataRowView 클래스
DataRow 클래스