Skip to main content

Create-Set

Command Description

Create a set and save it to a variable

Command Prototype

ObjSet=Set.Create()

Parameter Description

ParameterRequiredTypeDefaultDescription
NoneNoneNoneNoneNone

ObjSet,The variable used to save the output of the command.

Demo

Dim ObjSet 
ObjSet=Set.Create()
TracePrint(ObjSet)
/**
ObjSet = set()
*/