GetGUID
(Engine-Level Function)
| Format | ||||||
Required numeric. Defines the format of the return value as follows
|
| ExistingGUID |
| An optional parameter that is any text expression for the GUID to be converted from one format to another. No default value. |
Example 1:
The following script will cause GUID1 to be set to a globally unique 16 bit binary string and GUID2 to convert GUID1 to its 36 byte ASCII string equivalent.
If 1 Main;
[
GUID1 = GetGUID(1);
GUID2 = GetGUID(0, GUID1);
]
Example 2:
Obtain the current application's existing GUID as a 32-character string.
If 1 Main;
[
MyGUID = GetGUID(0,\LocalGUID);
]
