[VBA][编程][开发][笔记] VBA使用“TextFrame2”设置坐标轴属性出错

用VBA开发EXCEL,为修改坐标轴刻度线字体的大写,通过录制宏看到如下代码:

ActiveChart.Axes(xlValue).Select

With Selection.Format.TextFrame2.TextRange.Font

  .Size = 12

  .Bold = True

End With

可以从 宏 中看见,代码是通过 TextFrame2 属性对刻度线姿态进行控制的。

但将上述代码在程序中编译,则发现报错,提示  TextFrame2 无法识别,不存在。

不知道是Bug还是什么,最后通过 TickLabels 属性解决。


You already voted!

  • 注释 ( Comments )

  ( 如果您发现有错误,欢迎批评指正。邮箱:jidong_cui@163.com . 如果您喜欢这篇博文,请在上面给我 点个赞 吧! 🙂   🙂   

  ( If you found any mistakes in the post, please let me know. Email : jidong_cui@163.com. If you like this posts, please give me a thumbs up rating on the above button! )

  • 微信公众号 ( Wechat Subscription)

WeChat_QRCode

欢迎关注 “结构之旅” 微信公众号

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.