Class, Property, Method and Related Statements
<< Creating Your Own Classes
<< VBScript Tutorials - Herong's Tutorial Notes
This section describes general rules on creating your own classes in VBScript. A list of class related statements is provided.
Can you create your own class with VBScript? The answer is yes.
VBScript allows you to write a class with the following rules:
Things that you need to learn for creating your own classes:
Sections in This Chapter
"Class" Statement - Defining Your Own Class
"New" Operator and "Nothing" Object
"Public/Private" Variables and Dot Operator
"Property Let/Set/Get" Procedures
Object Methods - "Public" Procedures
"New", "Set", "Is", ".", "Nothing" - Object Operations
"StringBuffer" - A Class Example