如何找到单元格背景颜色

发布于 2024-12-27 07:44:56 字数 439 浏览 2 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

记忆消瘦 2025-01-03 07:44:56

.CellBackColor 获取/设置当前.Row/.Col的颜色,因此在询问之前,您必须设置。 Row/.Col 到您正在查看的那个:

With flexgrid1
   .Row = 1
   .Col = 2
   If .CellBackColor = vbCyan Then
      msgbox vbCyan
   Else
      msgbox vbWhite
   End If
End With 

.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:

With flexgrid1
   .Row = 1
   .Col = 2
   If .CellBackColor = vbCyan Then
      msgbox vbCyan
   Else
      msgbox vbWhite
   End If
End With 
对你而言 2025-01-03 07:44:56

您的 msgbox 声明符合规范吗? msgbox 采用字符串作为其参数。

msgbox "colour is Cyan"

are your msgbox statements kosher? msgbox takes a string as its argument.

msgbox "colour is Cyan"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文