home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 1999-09-06 | 1.1 KB | 41 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 = "clsWinSize"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = False
- Attribute VB_Ext_KEY = "SavedWithClassBuilder" ,"Yes"
- Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
- Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
- Option Explicit
-
- ' Name: Windows Information Viewer
- ' Author: Chong Long Choo
- ' Date: 06 September 1999
-
- Private mvarHoriz_Pixels As Long
- Private mvarVert_Pixels As Long
-
- Public Property Let Vert_Pixels(ByVal vData As Long)
- mvarVert_Pixels = vData
- End Property
-
- Public Property Get Vert_Pixels() As Long
- Vert_Pixels = mvarVert_Pixels
- End Property
-
- Public Property Let Horiz_Pixels(ByVal vData As Long)
- mvarHoriz_Pixels = vData
- End Property
-
- Public Property Get Horiz_Pixels() As Long
- Horiz_Pixels = mvarHoriz_Pixels
- End Property
-