Set: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:
Set ButtonRef=Button1
Set ButtonRef=Button1
Print ButtonRef.id
Print ButtonRef.id
</pre>
== Output ==
<pre>
Button1
</pre>
</pre>



Revision as of 19:20, 28 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
Set ButtonRef=Button1
Print ButtonRef.id

Output

Button1

Related Items

Is