所选择的行中存在CheckBoxCell
我用下的方法对选中行的数据的存在进行判断
For cellIndex As Integer = 0 To MyGcMultiRow1.Template.Row.Cells.Count - 1
If MyGcMultiRow1.GetValue(Row, cellIndex) IsNot Nothing Then
blnDataSonZaiFlg = True
Exit For
Else
blnDataSonZaiFlg = False
End If
Next
但是我不需要判断这个CheckBoxCell,请问如何剔除对CheckBoxCell得值的判断 |
|