UChar_new

Homepage
Wrappers

Creates a new UChar object.

UCharObject := UChar_new(value = 0)

Parameters

value The value to initialize the UChar object to.

Return Value

Address for the newly created UChar object.

Remarks

If the system has insufficient memory to create the object (very rare), zero will be returned.

Related

UChar_destroy

UChar

Examples

;Creates a new UChar initialized to 42
myUChar := UChar_new(42)

Homepage  |  Wrappers