VBScript Statements: Explanation of the Private Statement - The VBScript Network and Systems Administrator's Cafe

The VBScript Network and Systems Administrator's Cafe

Sep 27 2008   8:19PM GMT

VBScript Statements: Explanation of the Private Statement



Posted by: Jerry Lees
VBScript Statements, Classes, Private

The Private statement is used to declare a variable as being Private inside a script. If used outside of a class it has little effect and the variable can be used throughout the script, however, if used inside a class statement it will only be able to be used inside the class statement itself.

The use of this statement works exactly like using Dim, except that the initialization of the variable must happen on a second line of code. Below is an example:

Private PrvVariable
PrvVariable = 10

Comment on this Post


You must be logged-in to post a comment. Log-in/Register