home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 1999-09-29 | 783 b | 30 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 0 'vbNone
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "Tile"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = False
- Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
- Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
- 'local variable(s) to hold property value(s)
- Private mvarImage As Integer 'local copy
-
- Public Property Let Image(ByVal vData As Integer)
- mvarImage = vData
- End Property
-
- Public Property Get Image() As Integer
- Image = mvarImage
- End Property
-
- Private Sub Class_Initialize()
- mvarImage = -1
- End Sub
-