Position (InvalidHexData property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 1: Line 1:
 
{{Template:InvalidHexData:Position subtitle}}
<span class="pageSubtitle"><section begin=dpl_desc/>Position in the input string where a non-hexadecimal character was found<section end=dpl_desc/></span>
[[Category:InvalidHexData methods|Position property]]
<p>
Position is a member of the [[InvalidHexData class]].
</p>


==Syntax==
==Syntax==
<p class="syntax">%pos = %invHex:Position
{{Template:InvalidHexData:Position syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 28: Line 22:
  end try
  end try
</p>
</p>
==See also==
{{Template:InvalidHexData:Position footer}}

Revision as of 20:42, 25 March 2011

Input string position where non-hexadecimal character found (InvalidHexData class)

Syntax

%number = invalidHexData:Position

Syntax terms

%pos This numeric value is the position in the hexadecimal string where a non-hexadecimal character was found. Position is 0 if the exception was caused because the method object string contained an odd number of characters.
%invHex A reference to an instance of an InvalidHexData object.

Example

The following statements catch an InvalidHexData exception and print its position:

%target is object invalidhexdata try %myobject:mymethod catch invalidHexData to %target Print '%target is ' %target:Position end try

See also