什么是“正确的”?从VBA函数返回新类对象的方法?
我正在寻找在 VBA 中创建和返回新类对象的正确方法。
我熟悉以下返回新 Type 变量(按值返回)的模式:
Public Type Foo
x as Integer
y as Integer
End Type
Public Function NewFoo() as Foo
NewFoo.x = 4
NewFoo.y = 2
End Function
新 Class 对象(按引用返回)的等效语法是什么?
Public Function NewMyClass() As MyClass
''// ...?
End Function
I am looking for the proper way to create and return a new class object in VBA.
I am familiar with the following pattern for returning a new Type variable (returned by value):
Public Type Foo
x as Integer
y as Integer
End Type
Public Function NewFoo() as Foo
NewFoo.x = 4
NewFoo.y = 2
End Function
What would be the equivalent syntax for a new Class object (returned by reference)?
Public Function NewMyClass() As MyClass
''// ...?
End Function
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想在 VBA 中返回一个对象,你必须将它设置为方法名称
If you want to return an Object in VBA you have to set it to the Method name