Set

From NSB App Studio
Revision as of 03:12, 17 August 2012 by Brendon (talk | contribs)
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 equivalent to a normal assignment statement.

Example

Rem Set Example
'Set assigns objects to variables
Dim ButtonRef
AddObject "Picturebox","Button",0,0,10,10
Set ButtonRef = Button

Related Items

IS