DataGridViewSortCompareEventArgs.RowIndex2 プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DataGridViewSortCompareEventArgs.RowIndex2 プロパティの意味・解説 

DataGridViewSortCompareEventArgs.RowIndex2 プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

比較する 2 番目のセルを含む行のインデックス取得します

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

Dim instance As DataGridViewSortCompareEventArgs
Dim value As Integer

value = instance.RowIndex2
public int RowIndex2 { get;
 }
public:
property int RowIndex2 {
    int get ();
}
/** @property */
public int get_RowIndex2 ()

プロパティ
2 番目のセルを含む行のインデックス

解説解説

このプロパティは、複数列のセル値に基づいて行を並べ替えるときに便利です。

使用例使用例

次のコード例では、複数列の並べ替えRowIndex2使用する方法示します。この例は 方法 : Windows フォーム DataGridView コントロール並べ替え機能カスタマイズする の例の一部です。

Private Sub DataGridView1_SortCompare( _
    ByVal sender As Object,
 ByVal e As DataGridViewSortCompareEventArgs)
 _
    Handles DataGridView1.SortCompare

    ' Try to sort based on the contents of the cell in the current column.
    e.SortResult = System.String.Compare(e.CellValue1.ToString(), _
        e.CellValue2.ToString())

    ' If the cells are equal, sort based on the ID column.
    If (e.SortResult = 0) AndAlso Not
 (e.Column.Name = "ID") Then
        e.SortResult = System.String.Compare( _
            DataGridView1.Rows(e.RowIndex1).Cells("ID").Value.ToString(),
 _
            DataGridView1.Rows(e.RowIndex2).Cells("ID").Value.ToString())
    End If

    e.Handled = True

End Sub
private void dataGridView1_SortCompare(object
 sender,
    DataGridViewSortCompareEventArgs e)
{
    // Try to sort based on the cells in the current column.
    e.SortResult = System.String.Compare(
        e.CellValue1.ToString(), e.CellValue2.ToString());

    // If the cells are equal, sort based on the ID column.
    if (e.SortResult == 0 && e.Column.Name != "ID")
    {
        e.SortResult = System.String.Compare(
            dataGridView1.Rows[e.RowIndex1].Cells["ID"].Value.ToString()
,
            dataGridView1.Rows[e.RowIndex2].Cells["ID"].Value.ToString());
    }
    e.Handled = true;
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DataGridViewSortCompareEventArgs クラス
DataGridViewSortCompareEventArgs メンバ
System.Windows.Forms 名前空間
DataGridView クラス
DataGridView.SortCompare イベント
DataGridView.Rows プロパティ
DataGridViewSortCompareEventArgs.RowIndex1 プロパティ
その他の技術情報
方法 : Windows フォーム DataGridView コントロール並べ替え機能カスタマイズする


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

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

辞書ショートカット

すべての辞書の索引

DataGridViewSortCompareEventArgs.RowIndex2 プロパティのお隣キーワード
検索ランキング

   

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



DataGridViewSortCompareEventArgs.RowIndex2 プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2024 GRAS Group, Inc.RSS