Name
Sub Statement
Syntax
[Public [Default] | Private] Subname[(arglist)] [statements] [Exit Sub] [statements] End Sub
-
Public Use: Optional
Type: Keyword
Gives the subprocedure scope through all procedures in all modules in the project. If used within a createable class module, the sub procedure is also accessible from outside the project.
PublicandPrivateare mutually exclusive.-
Default Use: Optional
Type: Keyword
Indicates that a public procedure defined in a VBScript class (that is, defined within a
Class...End Classconstruct) is the default member of the class.-
Private Use: Optional
Type: Keyword
Restricts the scope of the subprocedure to those procedures within the same module.
Public,Private, andFriendare mutually exclusive.-
name Use: Required
The name of the subprocedure.
-
arglist Use: Optional
Data Subtype: Any
A comma-delimited list of variables to be passed to the subprocedure as arguments from the calling procedure.
-
statements Use: Optional
Program code to be executed within the subprocedure.
-
arglistuses the following syntax and parts: [ByVal | ByRef]
varname[( )]-
ByVal Use: Optional
The argument is passed by value; that is, a local copy of the variable is assigned the value of the argument.
-
ByRef Use: Optional
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 also reflected in the calling argument.
ByRefis the default method of passing variables.-
varname Use: Required ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access