在excel中,如何设置使光标点在哪,那里的横竖方向颜色就加深

如图

处理光标(Cursor属性)
Sub ViewCursors()
Application.Cursor = xlNorthwestArrow
MsgBox "您将使用箭头光标,切换到Excel界面查看光标形状"
Application.Cursor = xlIBeam
MsgBox "您将使用工形光标,切换到Excel界面查看光标形状"
Application.Cursor = xlWait
MsgBox "您将使用等待形光标,切换到Excel界面查看光标形状"
Application.Cursor = xlDefault
MsgBox "您已将光标恢复为缺省状态"
End Sub
温馨提示:答案为网友推荐,仅供参考
相似回答