Private Sub vsf1_RowDataBound(sender As Object, e As C1GridViewRowEventArgs) Handles vsf1.RowDataBound
Dim i As Int32
If e.Row.RowType = C1GridViewRowType.DataRow Then
. if e.row.Cells(3).Text="要改变边框的行" then
‘e.Row.Cells(3).BorderWidth = 0 这句话是改变了当前单元格所有的边框,我现在只想取消上边框,其余边框不变
e.Row.Cells(3).CssClass = "HB" 这句话不起作用
End Sub