method

new

v1_9_2_180 - Show latest stable - Class: Msxml
new(obj = nil)
public

No documentation available.

# File ext/win32ole/sample/xml.rb, line 7206
  def initialize(obj = nil)
    @clsid = "{CFC399AF-D876-11D0-9C10-00C04FC99C8E}"
    @progid = "Msxml"
    if obj.nil?
      @dispatch = WIN32OLE.new(@progid)
    else
      @dispatch = obj
    end
  end