Returns a name unique from any other name used in the current Intent kernel process. The baseName string is always the start of the unique name. For example, a unique name with a baseName of "test" might be test_1.
uniqueName ( baseName As String ) As String
Argument | Type | Description |
---|---|---|
baseName | string | The string used to construct the unique string identifier. |
Intent >uniqueName("new_design") --> :new_design_1
Intent >uniqueName("new_design") --> :new_design_2