DataGridCell 구조체
모눈의 셀을 식별합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Structure DataGridCell
‘사용 방법
Dim instance As DataGridCell
public struct DataGridCell
public value class DataGridCell
public final class DataGridCell extends ValueType
JScript에서는 구조체를 사용할 수 있지만 새로 선언할 수는 없습니다.
설명
DataGridCell을 System.Windows.Forms.DataGrid 컨트롤의 CurrentCell 속성과 함께 사용하여 모든 셀의 값을 가져오거나 설정할 수 있습니다. System.Windows.Forms.DataGrid 컨트롤의 CurrentCell 속성을 DataGridCell로 설정하면 DataGridCell이 지정하는 셀로 포커스가 이동합니다.
예제
다음 예제에서는 DataGridCell을 System.Windows.Forms.DataGrid의 CurrentCell에 할당하고 선택한 셀의 열과 행 번호를 반환합니다. 또한 DataGridCell 개체의 RowNumber 및 ColumnNumber를 사용하여 DataTable에 저장된 값이 인쇄됩니다.
Private Sub PrintCellRowAndCol()
Dim myCell As DataGridCell
myCell = DataGrid1.CurrentCell
Console.WriteLine(myCell.RowNumber)
Console.WriteLine(myCell.ColumnNumber)
' Prints the value of the cell through the DataTable.
Dim myTable As DataTable
' Assumes the DataGrid is bound to a DataTable.
myTable = CType(DataGrid1.DataSource, DataTable)
Console.WriteLine(myTable.Rows(myCell.RowNumber)(myCell.ColumnNumber))
End Sub
private void PrintCellRowAndCol()
{
DataGridCell myCell;
myCell = DataGrid1.CurrentCell;
Console.WriteLine(myCell.RowNumber);
Console.WriteLine(myCell.ColumnNumber);
// Prints the value of the cell through the DataTable.
DataTable myTable;
// Assumes the DataGrid is bound to a DataTable.
myTable = (DataTable) DataGrid1.DataSource;
Console.WriteLine(myTable.Rows[myCell.RowNumber]
[myCell.ColumnNumber]);
}
void PrintCellRowAndCol()
{
DataGridCell^ myCell;
myCell = DataGrid1->CurrentCell;
Console::WriteLine( myCell->RowNumber );
Console::WriteLine( myCell->ColumnNumber );
// Prints the value of the cell through the DataTable.
DataTable^ myTable;
// Assumes the DataGrid is bound to a DataTable.
myTable = dynamic_cast<DataTable^>(DataGrid1->DataSource);
Console::WriteLine( myTable->Rows[ myCell->RowNumber ][ myCell->ColumnNumber ] );
}
private void PrintCellRowAndCol()
{
DataGridCell myCell;
myCell = dataGrid1.get_CurrentCell();
Console.WriteLine(myCell.get_RowNumber());
Console.WriteLine(myCell.get_ColumnNumber());
// Prints the value of the cell through the DataTable.
DataTable myTable;
// Assumes the DataGrid is bound to a DataTable.
myTable = (DataTable)(dataGrid1.get_DataSource());
Console.WriteLine(myTable.get_Rows().
get_Item(myCell.get_RowNumber()).
get_Item(myCell.get_ColumnNumber()));
} //PrintCellRowAndCol
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
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에서 지원
참고 항목
참조
DataGridCell 멤버
System.Windows.Forms 네임스페이스
DataGrid.CurrentCell 속성
DataColumn
DataGrid 클래스
DataRow
ColumnNumber
RowNumber