DataGridViewCellValueEventArgsとは? わかりやすく解説

DataGridViewCellValueEventArgs クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

DataGridView コントロールの CellValueNeeded イベントおよび CellValuePushed イベントデータ提供します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Class DataGridViewCellValueEventArgs
    Inherits EventArgs
Dim instance As DataGridViewCellValueEventArgs
public class DataGridViewCellValueEventArgs
 : EventArgs
public ref class DataGridViewCellValueEventArgs
 : public EventArgs
public class DataGridViewCellValueEventArgs
 extends EventArgs
public class DataGridViewCellValueEventArgs
 extends EventArgs
解説解説
使用例使用例

CellValuePushed イベント処理してデータ ストア オブジェクト更新新しいエントリを格納するコード例次に示します。この例は DataGridView.VirtualMode のレファレンス トピック取り上げている例の一部分です。

#Region "data store maintance"
    Const initialValue As Integer
 = -1

    Private Sub dataGridView1_CellValueNeeded(ByVal
 sender As Object, _
        ByVal e As DataGridViewCellValueEventArgs)
 _
        Handles dataGridView1.CellValueNeeded

        If store.ContainsKey(e.RowIndex) Then
            ' Use the store if the e value has been modified 
            ' and stored.
            e.Value = store(e.RowIndex)
        ElseIf newRowNeeded AndAlso e.RowIndex
 = numberOfRows Then
            If dataGridView1.IsCurrentCellInEditMode Then
                e.Value = initialValue
            Else
                ' Show a blank value if the cursor is just resting
                ' on the last row.
                e.Value = String.Empty
            End If
        Else
            e.Value = e.RowIndex
        End If
    End Sub

    Private Sub dataGridView1_CellValuePushed(ByVal
 sender As Object, _
        ByVal e As DataGridViewCellValueEventArgs)
 _
        Handles dataGridView1.CellValuePushed

        store.Add(e.RowIndex, CInt(e.Value))

    End Sub
#End Region

    Dim store As System.Collections.Generic.Dictionary(Of
 Integer, Integer) = _
        New Dictionary(Of Integer,
 Integer)
#region "data store maintance"
const int initialValue = -1;

private void dataGridView1_CellValueNeeded(object
 sender,
    DataGridViewCellValueEventArgs e)
{
    if (store.ContainsKey(e.RowIndex))
    {
        // Use the store if the e value has been modified 
        // and stored.            
        e.Value = store[e.RowIndex];
    }
    else if (newRowNeeded && e.RowIndex
 == numberOfRows)
    {
        if (dataGridView1.IsCurrentCellInEditMode)
        {
            e.Value = initialValue;
        }
        else
        {
            // Show a blank value if the cursor is just resting
            // on the last row.
            e.Value = String.Empty;
        }
    }
    else
    {
        e.Value = e.RowIndex;
    }
}

private void dataGridView1_CellValuePushed(object
 sender,
    DataGridViewCellValueEventArgs e)
{
    store.Add(e.RowIndex, int.Parse(e.Value.ToString()));
}
#endregion

private Dictionary<int, int>
 store = new Dictionary<int, int>();
#pragma region Data store maintance

    void VirtualConnector::dataGridView1_CellValueNeeded
        (Object^ sender, DataGridViewCellValueEventArgs^ e)
    {
        if (store->ContainsKey(e->RowIndex))
        {
            // Use the store if the e value has been modified 
            // and stored.            
            e->Value = gcnew Int32(store->default[e->RowIndex]);
 
        }
        else if (newRowNeeded && e->RowIndex
 == numberOfRows)
        {
            if (dataGridView1->IsCurrentCellInEditMode)
            {
                e->Value = initialValue;
            }
            else
            {
                // Show a blank e if the cursor is just loitering
                // over(the) last row.
                e->Value = String::Empty;
            }
        }
        else
        {
            e->Value = e->RowIndex;
        }
    }

    void VirtualConnector::dataGridView1_CellValuePushed
        (Object^ sender, DataGridViewCellValueEventArgs^ e)
    {
        String^ value = e->Value->ToString();
        store[e->RowIndex] = Int32::Parse(value, 
            CultureInfo::CurrentCulture);
    }
#pragma endregion
#region "data store maintance"
private final int INITIALVALUE = -1;

private void dataGridView1_CellValueNeeded(Object
 sender,
    DataGridViewCellValueEventArgs e)
{
    if (store.ContainsKey(e.get_RowIndex())) {
        // Use the store if the e value has been modified 
        // and stored.            
        e.set_Value((Int32)store.get_Item(e.get_RowIndex()));
    }
    else {
        if (newRowNeeded && e.get_RowIndex() == numberOfRows)
 {
            if (dataGridView1.get_IsCurrentCellInEditMode()) {
                e.set_Value((Int32)INITIALVALUE);
            }
            else {
                // Show a blank e if the cursor is just loitering
                // over(the)
                // last row.
                e.set_Value("");
            }
        }
        else {
            e.set_Value((Int32)e.get_RowIndex());
        }
    }
} //dataGridView1_CellValueNeeded

private void dataGridView1_CellValuePushed(Object
 sender,
    DataGridViewCellValueEventArgs e)
{
    store.Add(e.get_RowIndex(), Int32.Parse(e.get_Value().ToString()));
} //dataGridView1_CellValuePushed
#endregion

private Dictionary<int, int>
 store = new Dictionary<int, int>();
継承階層継承階層
System.Object
   System.EventArgs
    System.Windows.Forms.DataGridViewCellValueEventArgs
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DataGridViewCellValueEventArgs メンバ
System.Windows.Forms 名前空間
DataGridView クラス
DataGridView.VirtualMode プロパティ
DataGridView.CellValueNeeded イベント
DataGridView.CellValuePushed イベント
DataGridViewCellValueEventHandler
その他の技術情報
Windows フォーム DataGridView コントロールでの仮想モード

DataGridViewCellValueEventArgs コンストラクタ

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

DataGridViewCellValueEventArgs クラス新しインスタンス初期化します。

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Sub New ( _
    columnIndex As Integer, _
    rowIndex As Integer _
)
Dim columnIndex As Integer
Dim rowIndex As Integer

Dim instance As New DataGridViewCellValueEventArgs(columnIndex,
 rowIndex)
public DataGridViewCellValueEventArgs (
    int columnIndex,
    int rowIndex
)
public:
DataGridViewCellValueEventArgs (
    int columnIndex, 
    int rowIndex
)
public DataGridViewCellValueEventArgs (
    int columnIndex, 
    int rowIndex
)
public function DataGridViewCellValueEventArgs
 (
    columnIndex : int, 
    rowIndex : int
)

パラメータ

columnIndex

イベント発生したセルを含む列のインデックス

rowIndex

イベント発生したセルを含む行のインデックス

例外例外
例外種類条件

ArgumentOutOfRangeException

columnIndex が 0 未満です。

または

rowIndex が 0 未満です。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DataGridViewCellValueEventArgs クラス
DataGridViewCellValueEventArgs メンバ
System.Windows.Forms 名前空間
DataGridView クラス
OnCellValueNeeded
OnCellValuePushed

DataGridViewCellValueEventArgs プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

DataGridViewCellValueEventArgs クラス
System.Windows.Forms 名前空間
DataGridView クラス
DataGridView.VirtualMode プロパティ
DataGridView.CellValueNeeded イベント
DataGridView.CellValuePushed イベント
DataGridViewCellValueEventHandler

その他の技術情報

Windows フォーム DataGridView コントロールでの仮想モード

DataGridViewCellValueEventArgs メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DataGridViewCellValueEventArgs クラス
System.Windows.Forms 名前空間
DataGridView クラス
DataGridView.VirtualMode プロパティ
DataGridView.CellValueNeeded イベント
DataGridView.CellValuePushed イベント
DataGridViewCellValueEventHandler

その他の技術情報

Windows フォーム DataGridView コントロールでの仮想モード

DataGridViewCellValueEventArgs メンバ

DataGridView コントロールの CellValueNeeded イベントおよび CellValuePushed イベントデータ提供します

DataGridViewCellValueEventArgs データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド DataGridViewCellValueEventArgs DataGridViewCellValueEventArgs クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DataGridViewCellValueEventArgs クラス
System.Windows.Forms 名前空間
DataGridView クラス
DataGridView.VirtualMode プロパティ
DataGridView.CellValueNeeded イベント
DataGridView.CellValuePushed イベント
DataGridViewCellValueEventHandler

その他の技術情報

Windows フォーム DataGridView コントロールでの仮想モード


このページでは「.NET Framework クラス ライブラリ リファレンス」からDataGridViewCellValueEventArgsを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDataGridViewCellValueEventArgsを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDataGridViewCellValueEventArgs を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DataGridViewCellValueEventArgs」の関連用語

DataGridViewCellValueEventArgsのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DataGridViewCellValueEventArgsのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS