structure for reporting parser errors

Methods
E
F
L
R
S
U
Included Modules
Attributes
[R] lastargs
Instance Public methods
errorCode()

I4 errorCode the error code

# File ext/win32ole/sample/xml.rb, line 4557
def errorCode()
  ret = _getproperty(0, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
filepos()

I4 filepos the absolute file position in the XML document containing the error

# File ext/win32ole/sample/xml.rb, line 4605
def filepos()
  ret = _getproperty(184, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
line()

I4 line the line number in the XML document where the error occurred

# File ext/win32ole/sample/xml.rb, line 4589
def line()
  ret = _getproperty(182, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
linepos()

I4 linepos the character position in the line containing the error

# File ext/win32ole/sample/xml.rb, line 4597
def linepos()
  ret = _getproperty(183, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
reason()

BSTR reason the cause of the error

# File ext/win32ole/sample/xml.rb, line 4573
def reason()
  ret = _getproperty(180, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
srcText()

BSTR srcText the data where the error occurred

# File ext/win32ole/sample/xml.rb, line 4581
def srcText()
  ret = _getproperty(181, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end
url()

BSTR url the URL of the XML document containing the error

# File ext/win32ole/sample/xml.rb, line 4565
def url()
  ret = _getproperty(179, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end