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


Ruby WIN32OLE_RECORD.new用法及代码示例


本文简要介绍ruby语言中 WIN32OLE_RECORD.new 的用法。

用法

new(typename, obj) → WIN32OLE_RECORD object

返回 WIN32OLE_RECORD 对象。第一个参数是结构名称( String Symbol )。第二个参数obj应该是 WIN32OLE 对象或 WIN32OLE_TYPELIB 对象。如果 VB.NET ComServer 项目中的 COM 服务器如下:

Imports System.Runtime.InteropServices
Public Class ComClass
    Public Structure Book
        <MarshalAs(UnmanagedType.BStr)> _
        Public title As String
        Public cost As Integer
    End Structure
End Class

然后,您可以创建 WIN32OLE_RECORD 对象,如下所示:

require 'win32ole'
obj = WIN32OLE.new('ComServer.ComClass')
book1 = WIN32OLE_RECORD.new('Book', obj) # => WIN32OLE_RECORD object
tlib = obj.ole_typelib
book2 = WIN32OLE_RECORD.new('Book', tlib) # => WIN32OLE_RECORD object

相关用法


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