uniqueName()

Synopsis

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.

Syntax

uniqueName ( baseName As String ) As String 
Argument Type Description
baseName string The string used to construct the unique string identifier.

Example 1

New Design
Intent >uniqueName("new_design") 
--> :new_design_1 

Example 2

New Design - call again
Intent >uniqueName("new_design") 
--> :new_design_2