DataGridViewCellValidatingEventArgs.ColumnIndex 属性        
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取需要验证的单元格的列索引。
public:
 property int ColumnIndex { int get(); };
	public int ColumnIndex { get; }
	member this.ColumnIndex : int
	Public ReadOnly Property ColumnIndex As Integer
	属性值
从零开始的整数,它指定需要验证的单元格的列索引。
示例
下面的代码示例演示了此属性的使用。 此示例是“如何:验证 Windows 窗体 DataGridView 控件中的数据”中提供的大型示例的一部分。
private void dataGridView1_CellValidating(object sender,
    DataGridViewCellValidatingEventArgs e)
{
    string headerText = 
        dataGridView1.Columns[e.ColumnIndex].HeaderText;
    // Abort validation if cell is not in the CompanyName column.
    if (!headerText.Equals("CompanyName")) return;
    // Confirm that the cell is not empty.
    if (string.IsNullOrEmpty(e.FormattedValue.ToString()))
    {
        dataGridView1.Rows[e.RowIndex].ErrorText =
            "Company Name must not be empty";
        e.Cancel = true;
    }
}
void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
    // Clear the row error in case the user presses ESC.   
    dataGridView1.Rows[e.RowIndex].ErrorText = String.Empty;
}
Private Sub dataGridView1_CellValidating(ByVal sender As Object, _
    ByVal e As DataGridViewCellValidatingEventArgs) _
    Handles dataGridView1.CellValidating
    Dim headerText As String = _
        dataGridView1.Columns(e.ColumnIndex).HeaderText
    ' Abort validation if cell is not in the CompanyName column.
    If Not headerText.Equals("CompanyName") Then Return
    ' Confirm that the cell is not empty.
    If (String.IsNullOrEmpty(e.FormattedValue.ToString())) Then
        dataGridView1.Rows(e.RowIndex).ErrorText = _
            "Company Name must not be empty"
        e.Cancel = True
    End If
End Sub
Private Sub dataGridView1_CellEndEdit(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) _
    Handles dataGridView1.CellEndEdit
    ' Clear the row error in case the user presses ESC.   
    dataGridView1.Rows(e.RowIndex).ErrorText = String.Empty
End Sub