网格单元格的默认背景
使用flexgrid
我想检查flex网格单元格的默认颜色...
如果背景颜色是青色那么下面的代码就可以工作,如果背景颜色是白色那么下面的代码就不起作用。
代码(方法1)
Private Sub flex1_LeaveCell()
With flex1
If .CellBackColor = vbCyan Then
.TextMatrix(.row, 34) = Val(.TextMatrix(.row, .Col))
ElseIf .CellBackColor = vbWhite Then
.TextMatrix(.row, 33) = Val(.TextMatrix(.row, .Col))
End If
End With
End Sub
代码(方法2)
Private Sub flex1_LeaveCell()
With flex1
If .CellBackColor = vbCyan Then
.TextMatrix(.row, 34) = Val(.TextMatrix(.row, .Col))
Else
.TextMatrix(.row, 33) = Val(.TextMatrix(.row, .Col))
End If
End With
End Sub
以上代码仅适用于青色,以上代码不能识别白色。
那么Flex网格的默认背景单元格颜色是什么呢?
需要帮助
Using flexgrid
I want to check the flex grid cell default color...
If background color is cyan then the below code is working, if background color is white then the below code is not working.
Code (Method1)
Private Sub flex1_LeaveCell()
With flex1
If .CellBackColor = vbCyan Then
.TextMatrix(.row, 34) = Val(.TextMatrix(.row, .Col))
ElseIf .CellBackColor = vbWhite Then
.TextMatrix(.row, 33) = Val(.TextMatrix(.row, .Col))
End If
End With
End Sub
Code (Method2)
Private Sub flex1_LeaveCell()
With flex1
If .CellBackColor = vbCyan Then
.TextMatrix(.row, 34) = Val(.TextMatrix(.row, .Col))
Else
.TextMatrix(.row, 33) = Val(.TextMatrix(.row, .Col))
End If
End With
End Sub
Above code is working only for color cyan, the above code is not recongnizing white.
So what is the default bacground cell colour of flex grid.
Need Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我来说效果很好。这不适合你吗?
This works fine for me. This isn't working for you?