home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 1999-02-04 | 806 b | 29 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- END
- Attribute VB_Name = "clsButton"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Attribute VB_Ext_KEY = "SavedWithClassBuilder" ,"Yes"
- Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
- 'local variable(s) to hold property value(s)
- Private mvarColumn As Integer 'local copy
- Public Property Let Column(ByVal vData As Integer)
- 'used when assigning a value to the property, on the left side of an assignment.
- 'Syntax: X.Column = 5
- mvarColumn = vData
- End Property
-
-
- Public Property Get Column() As Integer
- 'used when retrieving value of a property, on the right side of an assignment.
- 'Syntax: Debug.Print X.Column
- Column = mvarColumn
- End Property
-
-
-
-