当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby WIN32OLE_RECORD#ole_instance_variable_get用法及代码示例


本文简要介绍ruby语言中 WIN32OLE_RECORD#ole_instance_variable_get 的用法。

用法

WIN32OLE_RECORD#ole_instance_variable_get(name)

返回由VT_RECORD OLE 对象的成员名称指定的值。如果成员名称不正确,则会引发 KeyError 异常。如果无法直接访问VT_RECORD OLE 对象的成员变量,请使用此方法。

如果 VB.NET ComServer 项目中的 COM 服务器如下:

Imports System.Runtime.InteropServices
Public Class ComClass
    Public Structure ComObject
        Public object_id As Ineger
    End Structure
End Class

并且 Ruby Object 类具有标题属性:

然后从Ruby访问ComObject的object_id如下:

srver = WIN32OLE.new('ComServer.ComClass')
obj = WIN32OLE_RECORD.new('ComObject', server)
# obj.object_id returns Ruby Object#object_id
obj.ole_instance_variable_get(:object_id) # => nil

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 WIN32OLE_RECORD#ole_instance_variable_get。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。