DataGrid.Item プロパティ (DataGridCell)
指定した DataGridCell の値を取得または設定します。
[C#] C# では、このプロパティは DataGrid クラスのインデクサになります。
Overloads Public Default Property Item( _
ByVal cell As DataGridCell _) As Object
[C#]
public object this[DataGridCellcell] {get; set;}
[C++]
public: __property Object* get_Item(DataGridCellcell);public: __property void set_Item(DataGridCellcell, Object*);
[JScript]
returnValue = DataGridObject.Item(cell);DataGridObject.Item(cell) = returnValue;またはreturnValue = DataGridObject(cell);DataGridObject(cell) = returnValue;
[JScript] JScript では、この型で定義されている既定のインデックス プロパティを使用することができます。しかし、独自のインデックス プロパティを明示的に定義することはできません。ただし、このクラスの expando 属性を指定すると、既定のインデックス プロパティが提供されます。提供されるインデックス プロパティの型は Object 型であり、インデックス型は String になります。
引数 [JScript]
- cell
グリッド内のセルを表す DataGridCell 。
パラメータ [Visual Basic, C#, C++]
- cell
グリッド内のセルを表す DataGridCell 。
プロパティ値
object 型のセルの値。
解説
このプロパティを設定すると、 DataView の位置が指定した行に変更されます。
使用例
[Visual Basic, C#, C++] DataGridCell 変数を宣言し、その RowNumber 値と ColumnNumber 値を設定してから変更し、さらに指定したセルの値を返すことによって、セルの値を設定および取得する例を次に示します。
Private Sub SetCellValue(ByVal myGrid As DataGrid)
Dim myCell As New DataGridCell()
' Use an arbitrary cell.
myCell.RowNumber = 1
myCell.ColumnNumber = 1
' Change the cell's value using the CurrentCell.
myGrid(myCell)= "New Value"
End Sub
Private Sub GetCellValue(ByVal myGrid As DataGrid)
Dim myCell As New DataGridCell()
' Use an arbitrary cell.
myCell.RowNumber = 1
myCell.ColumnNumber = 1
Console.WriteLine(myGrid(myCell))
End Sub
[C#]
private void SetCellValue(DataGrid myGrid){
DataGridCell myCell = new DataGridCell();
// Use an arbitrary cell.
myCell.RowNumber = 1;
myCell.ColumnNumber = 1;
// Change the cell's value using the CurrentCell.
myGrid[myCell]="New Value";
}
private void GetCellValue(DataGrid myGrid){
DataGridCell myCell = new DataGridCell();
// Use and arbitrary cell.
myCell.RowNumber = 1;
myCell.ColumnNumber = 1;
Console.WriteLine(myGrid[myCell]);
}
[C++]
private:
void SetCellValue(DataGrid* myGrid){
DataGridCell myCell;
// Use an arbitrary cell.
myCell.RowNumber = 1;
myCell.ColumnNumber = 1;
// Change the cell's value using the CurrentCell.
myGrid->Item[myCell]=S"New Value";
}
void GetCellValue(DataGrid* myGrid){
DataGridCell myCell;
// Use and arbitrary cell.
myCell.RowNumber = 1;
myCell.ColumnNumber = 1;
Console::WriteLine(myGrid->Item[myCell]);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DataGrid クラス | DataGrid メンバ | System.Windows.Forms 名前空間 | DataGrid.Item オーバーロードの一覧 | CurrentCell | DataGridCell