Methods
I
L
N
R
Included Modules
Attributes
[R] lastargs
Instance Public methods
item()

PTR item collection of nodes

I4 arg0 --- index [IN]
# File ext/win32ole/sample/xml.rb, line 362
def item
  OLEProperty.new(self, 0, [VT_I4], [VT_I4, VT_BYREF|VT_DISPATCH])
end
length()

I4 length number of nodes in the collection

# File ext/win32ole/sample/xml.rb, line 353
def length()
  ret = _getproperty(74, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
nextNode()

IXMLDOMNode nextNode get next node from iterator

# File ext/win32ole/sample/xml.rb, line 368
def nextNode()
  ret = _invoke(76, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
reset()

VOID reset reset the position of iterator

# File ext/win32ole/sample/xml.rb, line 376
def reset()
  ret = _invoke(77, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end