Set

From NSB App Studio
Jump to navigation Jump to search

Set objectvariable = {objectexpression | Nothing}

Description

Set is used to assign an object reference to a variable. The required component, objectvariable, is a variable that follows standard variable naming conventions. The required component, objectexpression, is the name of an object, a variable containing an object reference, or Function call that returns an object. The optional keyword, Nothing, removes the association between objectvariable and any given object. When an object has no variables which reference it, the system and memory resources allocated to it are released.

Set is the same as a normal assignment statement, so there is no need to use it. It is only exists for backwards compatibility.

Example

Rem Set Example
'Set assigns objects to variables
Dim ButtonRef
Set ButtonRef=Button1
Print ButtonRef.id

Output

Button1

Related Items

Is