VBScript Statements: Explanation of the Property Let Statement
Posted by: Jerry Lees
Within a VBScript class the Property block allows you to set the name of the property in the class. This statement works in conjunction with the Property Set and Property Get statements and can only be used inside a class inside VBScript– and no where else in the script.
By default the Property Let statement is public but you can declare it to be private if you need to do so. Since this statement is used in a block, it is required that you end the block with the End Property statement. The block of code will look something like this:
Property Let PropertyName
’ code goes here
End Property



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