Name
Property Set Statement
Syntax
[Public | Private Property Setname([arglist,]reference) [statements] [Exit Property] [statements] End Property
PublicUse: Optional
Type: Keyword
Makes the property accessible from outside the class, so that it is visible to all procedures in all scripts.
PublicandPrivateare mutually exclusive.PrivateUse: Optional
Type: Keyword
Restricts the scope of the property to code within the
Class...End Classconstruct in which the property is declared.PublicandPrivateare mutually exclusive.nameUse: Required
The name of the property.
arglistUse: Optional
Data Type: Any
A comma-delimited list of variables to be passed to the property as arguments from the calling procedure.
referenceUse: Required
Data Type: Object
The last (or only) argument in
arglist, it must be a variable containing the object reference to be assigned to the property.statementsUse: Optional
Program code to be executed within the property.
arglistuses the following syntax and parts:[ByVal | ByRef]
varname[( )] _ByValUse: Optional
Type: Keyword
The argument is passed by value; that is, a local copy of the variable is assigned the value of the argument.
ByRefUse: Optional
Type: Keyword
The argument is passed by reference; that is, the local variable is simply a reference to the argument being passed. All changes made to the local variable are reflected in the calling argument when control returns to the calling procedure.
ByRefis the default method of passing variables.varnameUse: Required
Data Type: ...