能不能直接设置绘制单元格文本颜色,而不需要设置样式? Post By:2022/10/24 16:10:00 [显示全部帖子]
If e.Col.IsNumeric AndAlso e.Col.Name <> "总分"
Then
If e.Row.IsNull(e.Col.Name) = False
'且该列已经输入内容
If e.Row(e.Col.Name) < 60
Then
'如果该列的值小于60 e.Style = "不及格"
'那么用"不及格"样式绘制单元格
ElseIf e.Row(e.Col.Name) > 95
Then
'如果单元格的值大于95 e.Style = "优秀"
'那么用"优秀"样式绘制单元格
End
If
End
If End
If