Method: IXMLDOMElement#getAttribute

Defined in:
sample/xml.rb

#getAttribute(arg0) ⇒ Object

VARIANT getAttribute look up the string value of an attribute by name

BSTR arg0 --- name [IN]


1686
1687
1688
1689
1690
# File 'sample/xml.rb', line 1686

def getAttribute(arg0)
  ret = _invoke(99, [arg0], [VT_BSTR])
  @lastargs = WIN32OLE::ARGV
  ret
end