CharEnumerator: Current (get)

Current

This returns the current item of the enumeration. The current item is called after a successful MoveNext.



 Public Property Get Current ( ) As Integer

Return Values

Integer -  Returns the raw Unicode value for the current character in the string.

Remarks

The return value is a 16-bit signed Integer. This means that characters above &H7fff (32767) with be negative. To change this to the corrisponding positive value, add &H10000 (65536) to the value.

Read Only.

See Also

Project CorLib Overview

Class CharEnumerator Overview