如何找到单元格背景颜色
使用 Flexgrid
我想检查特定单元格的背景颜色...
代码
if flexgrid1.TextMatrix(1, 2).CellBackColor = vbCyan then
msgbox vbcyan
else
msgbox vbwhite
End if
上面的代码显示错误为“无效限定符”
其他方式....
if flexgrid1.row = 1 and flexgrid1.col = 2 and .CellBackColor = vbCyan then
msgbox vbcyan
else
msgbox vbwhite
End if
上面的代码未显示消息框
如何解决问题...
什么我的代码错误。
Using Flexgrid
I want to check the background color of the particular cell...
Code
if flexgrid1.TextMatrix(1, 2).CellBackColor = vbCyan then
msgbox vbcyan
else
msgbox vbwhite
End if
The above code is showing error as "Invalid Qualifier"
Other way....
if flexgrid1.row = 1 and flexgrid1.col = 2 and .CellBackColor = vbCyan then
msgbox vbcyan
else
msgbox vbwhite
End if
The above code not displayed message box
How to solve the problem...
What wrong in my code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.CellBackColor
获取/设置当前.Row
/.Col
的颜色,因此在询问之前,您必须设置。 Row
/.Col
到您正在查看的那个:.CellBackColor
gets/sets the color for the current.Row
/.Col
, so before asking, you have to set the.Row
/.Col
to the one you're looking at:您的 msgbox 声明符合规范吗? msgbox 采用字符串作为其参数。
are your msgbox statements kosher? msgbox takes a string as its argument.