如何将属性指定为 VbScript 类的默认属性

发布于 2024-09-25 16:31:22 字数 439 浏览 5 评论 0原文

既然可以在 VB 脚本中定义一个类,有没有办法为该类指定默认属性?

例如,鉴于

Class MyClass
    Private myName 

    Public Property Get Name() 
        Name = myName
    End Property
end class 

我是否可以说 Name 是默认属性?

注意:要在 VB6 中执行此操作,需要向属性添加一个属性,但是这在 VbScript 中不起作用

Public Property Get Name() 
    Attribute Name.VB_MemberFlags = "200"
    Name = strName
End Property

Given that one can define a class in VB Script, is there any way to specify a default property for that class?

e.g. Given

Class MyClass
    Private myName 

    Public Property Get Name() 
        Name = myName
    End Property
end class 

Is there anyway I can say that Name is the default property?

NB: To do this in VB6, one would add an attribute to the property, but this doesn't work in VbScript

Public Property Get Name() 
    Attribute Name.VB_MemberFlags = "200"
    Name = strName
End Property

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉城メ夜风 2024-10-02 16:31:22

使用默认关键字:

Public Default Property Get Name
    Name = myName
End Property

编辑:这里有一些关于在 VBScript 中使用类的教程和参考文章,希望您会发现它们有用:

Use the Default keyword:

Public Default Property Get Name
    Name = myName
End Property

Edit: Here're some tutorial and reference articles about using classes in VBScript, hope you'll find them useful:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文