我有两个细胞:绿色和紫色。我有代码:
Sub test()
With Selection.Interior
MsgBox (.ColorIndex)
End With
End Sub
为什么数字为MsgBox
的{{1}}同时出现绿色和紫色。
当我使用代码时
15
它为绿色和紫色提供不同数量但唯一的颜色:Sub test()
With Selection.Interior
MsgBox (.Color)
End With
End Sub
和10213316
。
为什么13082801
给出相同的数字,为什么ColorIndex
会给出不同且唯一的数字?
在代码中使用Color
返回的数字是否安全?它不会因计算机而改变吗?