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 4556
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 4604
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 4588
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 4596
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 4572
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 4580
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 4564
def url()
  ret = _getproperty(179, [], [])
  @lastargs = WIN32OLE::ARGV
  ret
end