1. General data types - String

    Article: AN0001760Updated:

    Data type string is used for storing a text value. The text is internally stored in  Unicode and its maximal size is 2 trillions of characers.

     

    Use in scripts:

    var t = 'My text';
    AnyFunction( t, 'enable');

×