|
|
|
|
|
GetGUID (Function) In french: DonneGUID Calculates a globally unique identifier (named "GUID"), whose size is: - equal to 16 bytes, which means 32 hexadecimal characters.
- equal to 32 bytes, which means 64 hexadecimal characters.
Note: GUIDs correspond to UUIDs. MyGUID is string
MyGUID = GetGUID()
My UUID is UUID
MyUUID = GetGUID()
MyUUID256 is 256-bit UUID
MyUUID256 = GetGUID(guidRaw256)
Syntax
<Result> = GetGUID([<GUID format>])
<Result>: Character string Generated identifier. <GUID format>: Optional Integer constant Used to define the format of returned identifier: | | guidRaw | The GUID corresponds to a sequence of 16 hexadecimal characters. Example: "CD9FE4B6AE1D448CB157D9EA074726CF".In previous versions, this constant corresponds to 'guidRough'. | guidRaw256 | The GUID corresponds to a sequence of 32 hexadecimal characters. Example: "bd05db772a9970c1d91adf8f86a7217ad65c64cf95b8cc6bc10cad69432f0473".In previous versions, this constant corresponds to 'guidRough256'. | guidFormatted (Default value) | The GUID is formatted for display with separators. Example: "{CD9FE4B6-AE1D-448c-B157-D9EA074726CF}" |
Remarks Several successive calls to GetGUID in the same executable are used to get distinct GUIDs. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|