Creating ObjectsSuppose we want to develop code to analyze a single cell in a worksheet and categorize the entry in that cell as one of the following:EmptyContaining a labelContaining a constant numeric valueContaining a formula We can readily accomplish this by creating a new object with the appropriate properties and methods. Our new object will be a Cell object. It will have an Analyze method that determines the cell type and sets the CellType property to a numeric value that can be used in our code. We will also have a DescriptiveCellType property so we can display the cell type as text.Listing 7-1 shows the CCell class module code. This class module is used to create a custom Cell object representing the specified cell, analyze the contents of the cell and return the type of the cell as a user-friendly text string. Listing 7-1. The CCell Class ModuleThe CCell class module contains a public enumeration with four members, each of which represents a cell type. By default, the enumeration members will be assigned values from zero to three. The enumeration member names help make our code more readable and easier to maintain. The enumeration member values are translated into user-friendly text by the DescriptiveCellType property.Listing 7-2 shows the AnalyzeActiveCell procedure. This procedure is contained in the standard module MEntryPoints. Listing 7-2. The AnalyzeActiveCell ProcedureIf you select a cell on a worksheet and run the AnalyzeActiveCell procedure, it creates a new instance of the CCell class that it stores in the clsCell object variable. The procedure then assigns the active cell to the Cell property of this Cell object, executes its Analyze method and displays the result of its DescriptiveCellType property. This code is contained in the Analysis1.xls workbook in the \Concepts\Ch07Using Class Modules to Create Objects folder on the CD that accompanies this book. Class Module StructureA class module contains the blueprint for an object. You can use it to create as many instances of the object as you require. It defines the methods and properties of the object. Any public subroutines or functions in the class module become methods of the object. Any public variables or property procedures become properties of the object. Property ProceduresRather than rely on public variables to define properties, it is better practice to use property procedures. These give you more control over how properties are assigned values and how they return values. Property procedures enable you to validate the data that is passed to the object and to perform related actions where appropriate. They also enable you to make properties read only or write only if you want.The CCell class uses two private module level variables to store its properties internally. muCellType holds the cell type in the form of an anlCellType enumeration member value. mrngCell holds a reference to the single-cell Range that an object created from the CCell class will represent.Property procedures control the interface between these variables and the outside world. Property procedures come in three forms:Property Let Used to assign a value to a propertyProperty Set Used to assign an object to a propertyProperty Get Used to return the value or the object reference in a property to the outside world The property name presented to the outside world is the same as the name of the property procedure. The CCell class uses Property Set Cell to enable you to assign a Range reference to the Cell property of the Cell object. The property procedure stores the reference in the mrngCell variable. This procedure could have a validation check to ensure that only single-cell ranges can be specified. There is a corresponding Property Get Cell procedure that allows this property to be read.The CCell class uses two Property Get procedures to return the cell type as an enumeration member value or as descriptive text. These properties are read-only because they have no corresponding Property Let procedures. MethodsThe CCell class has one method defined by the Analyze subroutine. It determines the type of data in the cell referred to by the mrngCell variable and assigns the corresponding enumeration member to the muCellType variable. Because it is a subroutine, the Analyze method doesn't return a value to the outside world. If a method is created using a function, it can return a value. The Analyze method could be converted to a function that returned the text value associated with the cell type, as shown in Listing 7-3. Listing 7-3. The Analyze Method of the Cell ObjectWe could then analyze the cell and display the return value with the following single line of code instead of the original two lines:
|