Hi,
Get the value for that column and check its true (or) false.
Try the following Code...
for(int x=0;x<dgvView.Rows.Count;x++)
{
if(dgvView.Rows[x].Cells["CheckBoxColumn"].Value.ToString().Equals("true"))
{
}
(or)
if(Convert.ToBoolean(dgvView.Rows[x].Cells["CheckBoxColumn"].Value.ToString()))
{
}
}
Cheers :)