Position (InvalidHexData property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:InvalidHexData:Position subtitle}}
#REDIRECT [[InvalidHexData class#Position property|Position property]]


==Syntax==
[[Category:InvalidHexData methods|Position property]]
{{Template:InvalidHexData:Position syntax}}
===Syntax terms===
<table class="syntaxTable">
<tr><th>%pos</th>
<td>This numeric value is the position in the hexadecimal string where a non-hexadecimal character was found. Position is <code>0</code> if the exception was caused because the method object string contained an odd number of characters.
</td></tr>
<tr><th>%invHex</th>
<td>A reference to an instance of an InvalidHexData object.
 
</td></tr></table>
==Example==
 
The following statements catch an InvalidHexData exception
and print its position:
<p class="code"> %target is object invalidhexdata
try %myobject:mymethod
  catch invalidHexData to %target
  Print '%target is ' %target:Position
end try
</p>
==See also==
{{Template:InvalidHexData:Position footer}}

Latest revision as of 15:38, 10 May 2011