在FT SE帮助文档中看见如下资料:
然后在FT SE里面建立了一个显示(名称为Text_VBA),想通过VBA看能不能实现‘返回显示中可以存放元素的区域的高度’。程序如下:
Private Sub Display_AnimationStart()
display.DisplayAreaHeight
End Sub
出现错误:
object required
之后根据提示添加了对象(可能不对):
Private Sub Display_AnimationStart()
Dim Test_VBA As Object
Test_VBA.DisplayAreaHeight = true
End Sub
提示错误:
object variable or With block variable not set。
然后,怎么改都是这个错误,想问问什么原因?