Link Search Menu Expand Document

UString.ValueOf Method

Explanation Returns the value stored in the UString object.
Call format var s = str.ValueOf( )
Return value Value of UString object
Arguments None
Exception None
Example of use
var str = new UString("ABCDEF");
print(str.ValueOf(), "\n");
    
Related item