Set: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
== Related Items == | == Related Items == | ||
[[is (operator)| | [[is (operator)|Is]] | ||
[[Category:Language Reference]] | [[Category:Language Reference]] |
Revision as of 01:39, 24 August 2012
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