Link Search Menu Expand Document

UString Constructor

Explanation Initialize the UString object.
Call format var str = new UString( [ text_1 [, text_2 [, … ] ] ] )
Return value UString object
Arguments UString text_n Value to initialize
If you specify more than one, it will be initialized with the concatenated character string.
Exception None
Example of use
var str = new UString("ABC", "DEF");
print(str, "\n");
    
Related item